1 | <?php |
||
5 | class FileEnvironManipulator implements EnvironManipulator |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $file; |
||
11 | |||
12 | /** |
||
13 | * @param string $file |
||
14 | */ |
||
15 | public function __construct($file) |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function save($declaration) |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | public function has($declaration) |
||
35 | } |
||
36 |