| 1 | <?php namespace Cornford\Logical; |
||
| 8 | class LogicalFactory implements LogicalFactoryInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Build a new Logical object and its dependencies |
||
| 12 | * |
||
| 13 | * @param array $input |
||
| 14 | * @param string|null $logic |
||
| 15 | * |
||
| 16 | * @return \Cornford\Logical\Contracts\LogicalInterface |
||
| 17 | */ |
||
| 18 | public function build( |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Build the Logical object |
||
| 29 | * |
||
| 30 | * @param array $input |
||
| 31 | * @param string|null $logic |
||
| 32 | * @param LogicalStatementInterface $logicStatement |
||
| 33 | * |
||
| 34 | * @return \Cornford\Logical\Contracts\LogicalInterface |
||
| 35 | */ |
||
| 36 | public function buildLogical( |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Build a new Logical Statement object |
||
| 46 | * |
||
| 47 | * @return \Cornford\Logical\Contracts\LogicalStatementInterface |
||
| 48 | */ |
||
| 49 | public function buildLogicalStatement() |
||
| 53 | } |
||
| 54 |