mirror of
https://github.com/jbcr/core.git
synced 2026-04-02 22:32:20 +02:00
22 lines
351 B
PHP
22 lines
351 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Bolt\Storage\Query\Directive;
|
|
|
|
use Bolt\Storage\Query\QueryInterface;
|
|
|
|
/**
|
|
* Directive to add a limit modifier to the query.
|
|
*/
|
|
class HydrateDirective
|
|
{
|
|
/**
|
|
* @param int $limit
|
|
*/
|
|
public function __invoke(QueryInterface $query, $limit): void
|
|
{
|
|
// Not implemented yet
|
|
}
|
|
}
|