Skip to content

Commit dc03299

Browse files
authored
feat: Remove final and @private tag (#16)
Those classes should be extendable. Closes #4.
1 parent 9201bb5 commit dc03299

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/FS.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,8 @@
5656
* @author Fabien Potencier <[email protected]>
5757
* @author Bernhard Schussek <[email protected]>
5858
* @author Thomas Schulz <[email protected]>
59-
*
60-
* @private
6159
*/
62-
final class FS
60+
class FS
6361
{
6462
private static FileSystem $filesystem;
6563

src/FileSystem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
use function sys_get_temp_dir;
6060
use const DIRECTORY_SEPARATOR;
6161

62-
final class FileSystem extends SymfonyFilesystem
62+
class FileSystem extends SymfonyFilesystem
6363
{
6464
/**
6565
* Returns whether a path is relative.

0 commit comments

Comments
 (0)