php: remove the final keyword for a few classes

This commit is contained in:
vanyauhalin
2023-08-03 18:11:44 +04:00
parent d8b6b0bbb5
commit 5d16a50f0f
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
namespace Example\Common;
final class Path {
class Path {
private string $separator = DIRECTORY_SEPARATOR;
private string $string;

View File

@ -17,7 +17,7 @@
namespace Example\Common;
final class URL {
class URL {
private string $string;
public function __construct(string $url) {

View File

@ -20,7 +20,7 @@ namespace Example\Configuration;
use Example\Common\Path;
use Example\Common\URL;
final class ConfigurationManager {
class ConfigurationManager {
public string $version = '1.6.0';
public function example_url(): ?URL {