assertNotIsWritable() public static method

Asserts that a file/dir exists and is not writable.
public static assertNotIsWritable ( string $filename, string $message = '' )
$filename string
$message string
Esempio n. 1
0
 public function isNotWritable()
 {
     $this->isExist();
     Assert::assertNotIsWritable($this->actual, $this->description);
     return $this;
 }