Skip to content

Commit

Permalink
Make annotations static
Browse files Browse the repository at this point in the history
  • Loading branch information
stancl committed Sep 2, 2020
1 parent 2f6ff33 commit 3853c4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Contracts/Domain.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @see \Stancl\Tenancy\Database\Models\Domain
*
* @method __call(string $method, array $parameters) IDE support. This will be a model.
* @method __callStatic(string $method, array $parameters) IDE support. This will be a model.
* @method static __callStatic(string $method, array $parameters) IDE support. This will be a model.
* @mixin \Illuminate\Database\Eloquent\Model
*/
interface Domain
Expand Down
2 changes: 1 addition & 1 deletion src/Contracts/Tenant.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @see \Stancl\Tenancy\Database\Models\Tenant
*
* @method __call(string $method, array $parameters) IDE support. This will be a model.
* @method __callStatic(string $method, array $parameters) IDE support. This will be a model.
* @method static __callStatic(string $method, array $parameters) IDE support. This will be a model.
* @mixin \Illuminate\Database\Eloquent\Model
*/
interface Tenant
Expand Down

0 comments on commit 3853c4c

Please sign in to comment.