1: <?php
2:
3: namespace Alchemy\core\query;
4:
5:
6: /**
7: * Interface for query fragments
8: */
9: interface IQueryFragment {
10:
11: /**
12: * Recursively get all scalar parameters used by this query
13: *
14: * @return array(Scalar, Scalar, ...)
15: */
16: public function parameters();
17: }
18: