| 1 | <?php |
||
| 9 | class DefaultWriter implements ConfigurationWriterInterface |
||
| 10 | { |
||
| 11 | /** @var SerializerInterface */ |
||
| 12 | private $serializer; |
||
| 13 | /** @var Filesystem */ |
||
| 14 | private $filesystem; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param SerializerInterface $serializer |
||
| 18 | * @param Filesystem $filesystem |
||
| 19 | */ |
||
| 20 | 1 | public function __construct(SerializerInterface $serializer, Filesystem $filesystem) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | 1 | public function write(Configuration $configuration, $destinationPath) |
|
| 42 | } |
||
| 43 |