} elseif ((!FrameworkBootstrap::isReadableFile($fileInstance)) && (file_exists($fileInstance))) {
// File exists but cannot be read
throw new FileReadProtectedException($fileInstance, self::EXCEPTION_FILE_CANNOT_BE_READ);
- } elseif (($fileInstance->isFile()) && (!$fileInstance->isWritable())) {
- // File exists but cannot be written
- throw new FileWriteProtectedException($fileInstance, self::EXCEPTION_FILE_CANNOT_BE_WRITTEN);
} elseif (!is_writable($fileInstance->getPath())) {
// Path is not writable
throw new PathWriteProtectedException($fileInstance, self::EXCEPTION_PATH_CANNOT_BE_WRITTEN);
+ } elseif (($fileInstance->isFile()) && (!$fileInstance->isWritable())) {
+ // File exists but cannot be written
+ throw new FileWriteProtectedException($fileInstance, self::EXCEPTION_FILE_CANNOT_BE_WRITTEN);
}
// Try to open a handler