| 1 | <?php |
||
| 15 | class HstoreExpression implements ExpressionInterface |
||
| 16 | { |
||
| 17 | const PARAM_PREFIX = ':hxp'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var array hash |
||
| 21 | */ |
||
| 22 | protected $hash; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * CallExpression constructor. |
||
| 26 | */ |
||
| 27 | public function __construct($hash) |
||
| 31 | |||
| 32 | public function buildExpression(QueryBuilder $builder) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @inheritdoc |
||
| 42 | */ |
||
| 43 | public function buildUsing(QueryBuilder $queryBuilder, &$params = []) |
||
| 55 | } |
||
| 56 |