| 1 | <?php |
||
| 30 | trait SettingsAwareTrait |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * settings |
||
| 34 | * |
||
| 35 | * @var array |
||
| 36 | * @access protected |
||
| 37 | */ |
||
| 38 | protected $settings = []; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritDoc} |
||
| 42 | */ |
||
| 43 | public function setSettings(array $settings) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritDoc} |
||
| 51 | */ |
||
| 52 | public function getSettings()/*# : array */ |
||
| 56 | } |
||
| 57 |