Skip to content

Commit

Permalink
chore: fix facade auto-completion to be static
Browse files Browse the repository at this point in the history
  • Loading branch information
owenvoke committed Apr 27, 2023
1 parent 9e1faea commit 3675e24
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Facades/ParcelTrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@
namespace ParcelTrap\Facades;

use Illuminate\Support\Facades\Facade;
use ParcelTrap\Contracts\Driver;
use ParcelTrap\DTOs\TrackingDetails;

/** @mixin \ParcelTrap\ParcelTrap */
/**
* @method static Driver driver(string|null $driver = null)
* @method static TrackingDetails find(string $identifier, array $parameters = [])
*/
class ParcelTrap extends Facade
{
protected static function getFacadeAccessor(): string
Expand Down

0 comments on commit 3675e24

Please sign in to comment.