Ejemplo n.º 1
0
 /**
  * @param DriverInterface $filesystem
  * @param string $filePath
  */
 public function __construct(DriverInterface $filesystem, Stacksight $stacksight, $filePath = null)
 {
     $this->stacksight = $stacksight->getClient();
     parent::__construct($filesystem, $filePath);
 }
Ejemplo n.º 2
0
 /**
  * @param DriverInterface $filesystem
  * @param Exception $exceptionHandler
  * @param string $filePath
  */
 public function __construct(DriverInterface $filesystem, Exception $exceptionHandler, $filePath = null)
 {
     $this->exceptionHandler = $exceptionHandler;
     parent::__construct($filesystem, $filePath);
 }
Ejemplo n.º 3
0
 /**
  * @param DriverInterface $filesystem
  * @param string $filePath
  */
 public function __construct(DriverInterface $filesystem, $filePath = null)
 {
     parent::__construct($filesystem, $filePath);
 }