Skip to content

Commit

Permalink
fix: Add static to docblock methods
Browse files Browse the repository at this point in the history
  • Loading branch information
owenconti committed May 5, 2022
1 parent e0aa7ee commit 0655e31
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Facades/ServerAnalytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
use OhSeeSoftware\LaravelServerAnalytics\RequestDetails;

/**
* @method void setRequestDetails(RequestDetails $requestDetails)
* @method void addRouteExclusions(array $routes)
* @method void addMethodExclusions(array $methods)
* @method bool shouldTrackRequest(Request $request)
* @method void addPostHook($callback)
* @method void clearPostHooks()
* @method void addRelation(Model $model, ?string $reason = null)
* @method void addMeta(string $key, $value)
* @method bool inExcludeRoutesArray(Request $request)
* @method bool inExcludeMethodsArray(Request $request)
* @method static void setRequestDetails(RequestDetails $requestDetails)
* @method static void addRouteExclusions(array $routes)
* @method static void addMethodExclusions(array $methods)
* @method static bool shouldTrackRequest(Request $request)
* @method static void addPostHook($callback)
* @method static void clearPostHooks()
* @method static void addRelation(Model $model, ?string $reason = null)
* @method static void addMeta(string $key, $value)
* @method static bool inExcludeRoutesArray(Request $request)
* @method static bool inExcludeMethodsArray(Request $request)
*/
class ServerAnalytics extends Facade
{
Expand Down

0 comments on commit 0655e31

Please sign in to comment.