nonWritablePaths = $nonWritablePaths; $this->nonReadablePaths = $nonReadablePaths; } /** * Get array of non-writable paths * * @return \string[] */ public function getNonWritablePaths() { return $this->nonWritablePaths; } /** * Get array of non-readable paths * * @return \string[] */ public function getNonReadablePaths() { return $this->nonReadablePaths; } /** * See if there are any non-writable or non-readable * @return bool */ public function containsPaths() { return !empty($this->nonWritablePaths) || !empty($this->nonReadablePaths); } }