1 | <?php |
||
29 | trait ParameterAwareTrait |
||
30 | { |
||
31 | /** |
||
32 | * the Parameter object |
||
33 | * |
||
34 | * @var Parameter |
||
35 | * @access protected |
||
36 | */ |
||
37 | protected $parameter; |
||
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | public function getParameter()/*# : Parameter */ |
||
46 | |||
47 | /** |
||
48 | * Create Parameter object |
||
49 | * |
||
50 | * @return $this |
||
51 | * @access protected |
||
52 | */ |
||
53 | protected function initParameter() |
||
58 | } |
||
59 |