Piwik\Plugins\CustomPiwikJs\File::checkReadable PHP Method

checkReadable() public method

public checkReadable ( )
    public function checkReadable()
    {
        if (!$this->hasReadAccess()) {
            throw new AccessDeniedException(sprintf('The file %s is not readable', $this->file));
        }
    }

Usage Example

Example #1
0
 public function checkWillSucceed()
 {
     $this->fromFile->checkReadable();
     $this->toFile->checkWritable();
 }