blob: 49aff16764346ac0203efbb28468d32a454e241c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
namespace WFlywheel;
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();
}
}
|