| 1 | <?php |
||
| 9 | trait AppInjectableTrait |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Properties |
||
| 13 | * |
||
| 14 | */ |
||
| 15 | private $app; // Contains all framework resources. |
||
| 16 | |||
| 17 | |||
| 18 | |||
| 19 | /** |
||
| 20 | * Inject the $app into this class. |
||
| 21 | * |
||
| 22 | * @param object $app containing framework resources. |
||
| 23 | * |
||
| 24 | * @return $this for chaining. |
||
| 25 | */ |
||
| 26 | 1 | public function setApp($app) |
|
| 31 | } |
||
| 32 |