1: <?php
2:
3: namespace LaravelUi5\Core\Services;
4:
5: use LaravelUi5\Core\Contracts;
6: use LaravelUi5\Core\Contracts\Ui5Context;
7:
8: class NullAuthService implements Contracts\AuthServiceInterface
9: {
10:
11: /**
12: * @inheritDoc
13: */
14: public function authorize(string $ability, Ui5Context $context): bool
15: {
16: return true;
17: }
18: }
19: