public function __construct($lockPath)
 {
     parent::__construct(sprintf('composer.lock file "%s" is invalid.', $lockPath));
 }
 public function __construct($lockPath)
 {
     parent::__construct(sprintf('composer.lock file "%s" does not exist.', $lockPath));
 }
예제 #3
0
 public function __construct($composerErrorOutput, $message = null, $code = 0, \Exception $previous = null)
 {
     parent::__construct($message, $code, $previous);
     $this->composerErrorOutput = $composerErrorOutput;
 }