1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 15:34:03 +00:00

Make annotations static

This commit is contained in:
Samuel Štancl 2020-09-02 19:45:06 +02:00
parent 2f6ff33bf9
commit 3853c4cdcc
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ namespace Stancl\Tenancy\Contracts;
* @see \Stancl\Tenancy\Database\Models\Domain * @see \Stancl\Tenancy\Database\Models\Domain
* *
* @method __call(string $method, array $parameters) IDE support. This will be a model. * @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 * @mixin \Illuminate\Database\Eloquent\Model
*/ */
interface Domain interface Domain

View file

@ -8,7 +8,7 @@ namespace Stancl\Tenancy\Contracts;
* @see \Stancl\Tenancy\Database\Models\Tenant * @see \Stancl\Tenancy\Database\Models\Tenant
* *
* @method __call(string $method, array $parameters) IDE support. This will be a model. * @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 * @mixin \Illuminate\Database\Eloquent\Model
*/ */
interface Tenant interface Tenant