public function __construct($options)
 {
     parent::__construct($options);
     $this->depthProp = 0;
     $this->extProp = "";
     $this->isDirProp = true;
     $this->isFileProp = false;
     $this->searchProp = "";
     $this->ignoreProp = "";
 }
 public function __construct($options)
 {
     parent::__construct($options);
     $this->depthProp = 3;
     // 3 means that depth won't be checked
     $this->extProp = "json||yaml";
     $this->isDirProp = false;
     $this->isFileProp = true;
     $this->searchProp = ".listitems.";
     $this->ignoreProp = "";
 }
 public function __construct($options)
 {
     parent::__construct($options);
     $this->depthProp = 3;
     // 3 means that depth won't be checked
     $this->extProp = Config::getOption("patternExtension");
     $this->isDirProp = false;
     $this->isFileProp = true;
     $this->searchProp = "";
     $this->ignoreProp = "";
 }