mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-13 22:43:39 +08:00
1559b0acd1
Also moved to a non-static approach, and added a high-level class to allow easy access to all other entity queries, for use in mixed-entity scenarios and easier/simpler injection.
13 lines
187 B
PHP
13 lines
187 B
PHP
<?php
|
|
|
|
namespace BookStack\Entities\Queries;
|
|
|
|
class EntityQueries
|
|
{
|
|
public function __construct(
|
|
public BookQueries $books,
|
|
public PageQueries $pages,
|
|
) {
|
|
}
|
|
}
|