mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-04-07 14:06:11 +08:00
php: remove the final keyword for a few classes
This commit is contained in:
@ -17,7 +17,7 @@
|
||||
|
||||
namespace Example\Common;
|
||||
|
||||
final class Path {
|
||||
class Path {
|
||||
private string $separator = DIRECTORY_SEPARATOR;
|
||||
private string $string;
|
||||
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
|
||||
namespace Example\Common;
|
||||
|
||||
final class URL {
|
||||
class URL {
|
||||
private string $string;
|
||||
|
||||
public function __construct(string $url) {
|
||||
|
||||
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user