Skip to content

Commit

Permalink
Generate facade methods using official Laravel Facade Documenter
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Apr 10, 2024
1 parent 89cbfd6 commit ad77781
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions src/Facades/ShortURL.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,39 +2,39 @@

namespace AshAllenDesign\ShortURL\Facades;

use AshAllenDesign\ShortURL\Classes\Builder;
use AshAllenDesign\ShortURL\Classes\KeyGenerator;
use Carbon\Carbon;
use Illuminate\Support\Facades\Facade;
use RuntimeException;

/**
* @method static self destinationUrl(string $url)
* @method static self singleUse(bool $isSingleUse = true)
* @method static self secure(bool $isSecure = true)
* @method static self forwardQueryParams(bool $shouldForwardQueryParams = true)
* @method static self trackVisits(bool $trackVisits = true)
* @method static self trackIPAddress(bool $track)
* @method static self trackOperatingSystem(bool $track)
* @method static self trackOperatingSystemVersion(bool $track)
* @method static self trackBrowser(bool $track)
* @method static self trackBrowserVersion(bool $track)
* @method static self trackRefererURL(bool $track)
* @method static self trackDeviceType(bool $track)
* @method static self urlKey(string $key)
* @method static self keyGenerator(KeyGenerator $keyGenerator)
* @method static self redirectStatusCode(int $statusCode)
* @method static self resetOptions()
* @method static self activateAt(Carbon $activationTime)
* @method static self deactivateAt(Carbon $deactivationTime)
* @method static self beforeCreate(Closure $callback)
* @method static \AshAllenDesign\ShortURL\Models\ShortURL make()
* @method static string|null prefix()
* @method static array middleware()
* @method static array toArray()
* @method static void routes()
* @method static \AshAllenDesign\ShortURL\Classes\Builder destinationUrl(string $url)
* @method static \AshAllenDesign\ShortURL\Classes\Builder singleUse(bool $isSingleUse = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder secure(bool $isSecure = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder forwardQueryParams(bool $shouldForwardQueryParams = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder trackVisits(bool $trackUrlVisits = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder trackIPAddress(bool $track = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder trackOperatingSystem(bool $track = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder trackOperatingSystemVersion(bool $track = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder trackBrowser(bool $track = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder trackBrowserVersion(bool $track = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder trackRefererURL(bool $track = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder trackDeviceType(bool $track = true)
* @method static \AshAllenDesign\ShortURL\Classes\Builder urlKey(string $key)
* @method static \AshAllenDesign\ShortURL\Classes\Builder keyGenerator(\AshAllenDesign\ShortURL\Classes\KeyGenerator $keyGenerator)
* @method static \AshAllenDesign\ShortURL\Classes\Builder redirectStatusCode(int $statusCode)
* @method static \AshAllenDesign\ShortURL\Classes\Builder activateAt(\Carbon\Carbon $activationTime)
* @method static \AshAllenDesign\ShortURL\Classes\Builder deactivateAt(\Carbon\Carbon $deactivationTime)
* @method static \AshAllenDesign\ShortURL\Classes\Builder generateKeyUsing(int $generateUsing)
* @method static \AshAllenDesign\ShortURL\Classes\Builder beforeCreate(\Closure $callback)
* @method static \AshAllenDesign\ShortURL\Models\ShortURL make()
* @method static array toArray()
* @method static \AshAllenDesign\ShortURL\Classes\Builder resetOptions()
* @method static \AshAllenDesign\ShortURL\Classes\Builder|mixed when(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
* @method static \AshAllenDesign\ShortURL\Classes\Builder|mixed unless(\Closure|mixed|null $value = null, callable|null $callback = null, callable|null $default = null)
*
* @see Builder
* @see \AshAllenDesign\ShortURL\Classes\Builder
*/
class ShortURL extends Facade
{
Expand Down

0 comments on commit ad77781

Please sign in to comment.