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

checkWritable() public method

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

Usage Example

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