diff options
Diffstat (limited to 'app/class/Flywheel/Query.php')
-rw-r--r-- | app/class/Flywheel/Query.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/class/Flywheel/Query.php b/app/class/Flywheel/Query.php new file mode 100644 index 0000000..f002080 --- /dev/null +++ b/app/class/Flywheel/Query.php @@ -0,0 +1,16 @@ +<?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(); + } +} |