|
5 | 5 | use Illuminate\Support\Facades\Facade; |
6 | 6 | use Illuminate\Support\Testing\Fakes\Fake; |
7 | 7 | use YlsIdeas\FeatureFlags\Contracts\Features as FeaturesContract; |
| 8 | +use YlsIdeas\FeatureFlags\Manager; |
8 | 9 | use YlsIdeas\FeatureFlags\Support\FeatureFake; |
9 | 10 |
|
10 | 11 | /** |
11 | 12 | * @method static \Illuminate\Pipeline\Pipeline pipeline() |
12 | 13 | * @method static bool accessible(string $feature) |
13 | 14 | * @method static void turnOn(string $gateway, string $feature) |
14 | 15 | * @method static void turnOff(string $gateway, string $feature) |
15 | | - * @method static \static noBlade() |
16 | | - * @method static \static noScheduling() |
17 | | - * @method static \static noValidations() |
18 | | - * @method static \static noCommands() |
19 | | - * @method static \static noMiddlewares() |
20 | | - * @method static \static noQueryBuilderMixin() |
21 | | - * @method static \static configureDebugging(bool $value = true) |
| 16 | + * @method static Manager noBlade() |
| 17 | + * @method static Manager noScheduling() |
| 18 | + * @method static Manager noValidations() |
| 19 | + * @method static Manager noCommands() |
| 20 | + * @method static Manager noMiddlewares() |
| 21 | + * @method static Manager noQueryBuilderMixin() |
| 22 | + * @method static Manager configureDebugging(bool $value = true) |
22 | 23 | * @method static bool usesBlade() |
23 | 24 | * @method static bool usesValidations() |
24 | 25 | * @method static bool usesScheduling() |
25 | 26 | * @method static bool usesCommands() |
26 | 27 | * @method static bool usesMiddlewares() |
27 | 28 | * @method static bool usesDebugging() |
28 | 29 | * @method static bool usesQueryBuilderMixin() |
29 | | - * @method static \static callOnExpiredFeatures(array $expiredFeatures, callable|null $handler = null) |
30 | | - * @method static \static applyOnExpiredHandler(\YlsIdeas\FeatureFlags\Contracts\ExpiredFeaturesHandler $handler) |
31 | | - * @method static \static extend(string $driver, callable $builder) |
| 30 | + * @method static Manager callOnExpiredFeatures(array $expiredFeatures, callable|null $handler = null) |
| 31 | + * @method static Manager applyOnExpiredHandler(\YlsIdeas\FeatureFlags\Contracts\ExpiredFeaturesHandler $handler) |
| 32 | + * @method static Manager extend(string $driver, callable $builder) |
32 | 33 | * @method static \YlsIdeas\FeatureFlags\Support\MaintenanceRepository maintenanceMode() |
33 | 34 | * @method static void assertAccessed(string $feature, int|null $count = null, string $message = '') |
34 | 35 | * @method static void assertNotAccessed(string $feature, string $message = '') |
|
0 commit comments