/**
  * Create a new instance.
  *
  * @param string $validatorName The name of the originating validator.
  *
  * @param string $fileEntry     The specified file.
  */
 public function __construct($validatorName, $fileEntry)
 {
     parent::__construct($validatorName);
     $this->fileEntry = $fileEntry;
 }
 /**
  * Create a new instance.
  *
  * @param string $validatorName The name of the originating validator.
  *
  * @param string $psr0Prefix    The specified psr-0 namespace prefix.
  *
  * @param string $path          The specified path for the prefix.
  */
 public function __construct($validatorName, $psr0Prefix, $path)
 {
     parent::__construct($validatorName);
     $this->psr0Prefix = $psr0Prefix;
     $this->path = $path;
 }
 /**
  * Create a new instance.
  *
  * @param string $validatorName  The name of the originating validator.
  *
  * @param string $classMapPrefix The specified classmap namespace prefix.
  */
 public function __construct($validatorName, $classMapPrefix)
 {
     parent::__construct($validatorName);
     $this->classMapPrefix = $classMapPrefix;
 }