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