| 1 | <?php namespace Comodojo\Extender\Traits; |
||
| 5 | trait ConfigurationTrait { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * @var Configuration |
||
| 9 | */ |
||
| 10 | protected $configuration; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Get current configuration |
||
| 14 | * |
||
| 15 | * @return Configuration |
||
| 16 | */ |
||
| 17 | public function getConfiguration() { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Set current configuration |
||
| 25 | * |
||
| 26 | * @param Configuration $configuration |
||
| 27 | * @return self |
||
| 28 | */ |
||
| 29 | public function setConfiguration(Configuration $configuration) { |
||
| 36 | |||
| 37 | } |
||
| 38 |