Esempio n. 1
0
 /**
  * @param string                     $path
  * @param FileSystemHandlerInterface $fileSystemHandlerInterface
  * @param string|null                $value
  */
 public function __construct($path, FileSystemHandlerInterface $fileSystemHandlerInterface, $value)
 {
     parent::__construct($path, $fileSystemHandlerInterface);
     $this->setValue($value);
 }
Esempio n. 2
0
 /**
  * @param string                     $path
  * @param FileSystemHandlerInterface $fileSystemHandlerInterface
  * @param array                      $values
  */
 public function __construct($path, FileSystemHandlerInterface $fileSystemHandlerInterface, array $values)
 {
     parent::__construct($path, $fileSystemHandlerInterface);
     $this->applyValue($values);
 }