mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 17:57:28 +08:00
20 lines
419 B
PHP
20 lines
419 B
PHP
<?php
|
|
|
|
namespace BookStack\Entities\Queries;
|
|
|
|
use BookStack\Entities\EntityProvider;
|
|
use BookStack\Permissions\PermissionApplicator;
|
|
|
|
abstract class EntityQuery
|
|
{
|
|
protected function permissionService(): PermissionApplicator
|
|
{
|
|
return app()->make(PermissionApplicator::class);
|
|
}
|
|
|
|
protected function entityProvider(): EntityProvider
|
|
{
|
|
return app()->make(EntityProvider::class);
|
|
}
|
|
}
|