Skip to content

Commit 5d9d512

Browse files
authored
Remove final from private magic method
In order to fix PHP Warning: Private methods cannot be final as they are never overridden by other classes in .../src/Application/Application.php on line 19
1 parent 5e6a756 commit 5d9d512

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Application/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ protected function __construct()
1616
// singleton construct required this method to be protected/private
1717
}
1818

19-
final protected function __clone()
19+
protected function __clone()
2020
{
2121
// singleton construct required this method to be protected/private
2222
}

0 commit comments

Comments
 (0)