mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
20 lines
415 B
PHP
20 lines
415 B
PHP
<?php
|
|
|
|
namespace BookStack\Entities\Queries;
|
|
|
|
use BookStack\Auth\Permissions\PermissionService;
|
|
use BookStack\Entities\EntityProvider;
|
|
|
|
abstract class EntityQuery
|
|
{
|
|
protected function permissionService(): PermissionService
|
|
{
|
|
return app()->make(PermissionService::class);
|
|
}
|
|
|
|
protected function entityProvider(): EntityProvider
|
|
{
|
|
return app()->make(EntityProvider::class);
|
|
}
|
|
}
|