Skip to content

Commit

Permalink
feat: Add docblock to ServerAnalytics facade
Browse files Browse the repository at this point in the history
  • Loading branch information
owenconti committed May 5, 2022
1 parent e0945a6 commit e0aa7ee
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/Facades/ServerAnalytics.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,19 @@
namespace OhSeeSoftware\LaravelServerAnalytics\Facades;

use Illuminate\Support\Facades\Facade;
use OhSeeSoftware\LaravelServerAnalytics\RequestDetails;

/**
* @see \OhSeeSoftware\LaravelServerAnalytics\Skeleton\SkeletonClass
* @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)
*/
class ServerAnalytics extends Facade
{
Expand Down

0 comments on commit e0aa7ee

Please sign in to comment.