| 1 | <?php |
||
| 5 | class EnvironmentAttribute extends AbstractAttribute |
||
| 6 | { |
||
| 7 | /** @var string **/ |
||
| 8 | protected $variableName; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @param string $variableName |
||
| 12 | * |
||
| 13 | * @return static |
||
| 14 | */ |
||
| 15 | 5 | public function setVariableName($variableName) |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | 4 | public function getVariableName() |
|
| 29 | } |
||
| 30 |