예제 #1
0
 /**
  * @return bool TRUE if the file can be read by the current user, FALSE otherwise
  */
 public function isReadable()
 {
     try {
         $this->checkReadPermission();
         return parent::isReadable();
     } catch (EyeSecurityException $e) {
         return false;
     }
 }