blob: a3ccf36205341eeab4b80d5b965a5386c109d266 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Wcms\Flywheel;
class Query extends \JamesMoss\Flywheel\Query
{
/**
* Constructor
*
* @param Repository $repository The repo this query will run against.
*/
public function __construct(Repository $repository)
{
parent::__construct($repository);
$this->predicate = new Predicate();
}
}
|