1 | <?php |
||
20 | trait StringCodeTrait { |
||
21 | |||
22 | /** |
||
23 | * Code. |
||
24 | * |
||
25 | * @var string |
||
26 | */ |
||
27 | private $code; |
||
28 | |||
29 | /** |
||
30 | * Get the code. |
||
31 | * |
||
32 | * @return string Returns the code. |
||
33 | */ |
||
34 | public function getCode() { |
||
37 | |||
38 | /** |
||
39 | * Set the code. |
||
40 | * |
||
41 | * @param string $code The code. |
||
42 | */ |
||
43 | public function setCode($code) { |
||
47 | } |