| 1 | <?php |
||
| 20 | class Query implements Contract |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Holds an instance of strategy. |
||
| 24 | * |
||
| 25 | * @var Strategy |
||
| 26 | */ |
||
| 27 | private $strategy; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function __construct(Strategy $strategy) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function toString() |
||
| 50 | } |
||
| 51 |