Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit 99b91bc

Browse files
committed
⛔ Removes unnecessary functions
1 parent 3c609db commit 99b91bc

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/FilipSedivy/EET/Utils/FileSystem.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,6 @@ public static function isFile(string $file): bool
1616
return is_file($file);
1717
}
1818

19-
public static function isReadable(string $file): bool
20-
{
21-
return self::isFile($file) && is_readable($file);
22-
}
23-
2419
public static function read(string $file): string
2520
{
2621
$content = @file_get_contents($file);
@@ -31,4 +26,4 @@ public static function read(string $file): string
3126

3227
return $content;
3328
}
34-
}
29+
}

0 commit comments

Comments
 (0)