From 55097c47c5534d4453f7494f8a1542f7beb4d588 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 14 Mar 2024 10:13:22 +0000 Subject: Revert "composer update and use the fixed streams php-jcs library until the floats issue will be fixed upstream. see here for reference https://codeberg.org/streams/streams/issues/151" This reverts commit 6bf61dfa6b585db01b607a79bd64ec9c583a9c10. --- .../src/SettingsContainerInterface.php | 26 +++++++++------------- 1 file changed, 11 insertions(+), 15 deletions(-) (limited to 'vendor/chillerlan/php-settings-container/src/SettingsContainerInterface.php') diff --git a/vendor/chillerlan/php-settings-container/src/SettingsContainerInterface.php b/vendor/chillerlan/php-settings-container/src/SettingsContainerInterface.php index 1c9c12a73..ddacccd29 100644 --- a/vendor/chillerlan/php-settings-container/src/SettingsContainerInterface.php +++ b/vendor/chillerlan/php-settings-container/src/SettingsContainerInterface.php @@ -7,28 +7,30 @@ * @copyright 2018 Smiley * @license MIT */ -declare(strict_types=1); namespace chillerlan\Settings; -use JsonSerializable, Serializable; +use JsonSerializable; /** * a generic container with magic getter and setter */ -interface SettingsContainerInterface extends JsonSerializable, Serializable{ +interface SettingsContainerInterface extends JsonSerializable{ /** * Retrieve the value of $property * * @return mixed|null */ - public function __get(string $property):mixed; + public function __get(string $property); /** * Set $property to $value while avoiding private and non-existing properties + * + * @param string $property + * @param mixed $value */ - public function __set(string $property, mixed $value):void; + public function __set(string $property, $value):void; /** * Checks if $property is set (aka. not null), excluding private properties @@ -41,38 +43,32 @@ interface SettingsContainerInterface extends JsonSerializable, Serializable{ public function __unset(string $property):void; /** - * @see \chillerlan\Settings\SettingsContainerInterface::toJSON() + * @see SettingsContainerInterface::toJSON() */ public function __toString():string; /** * Returns an array representation of the settings object - * - * The values will be run through the magic __get(), which may also call custom getters. */ public function toArray():array; /** * Sets properties from a given iterable - * - * The values will be run through the magic __set(), which may also call custom setters. */ - public function fromIterable(iterable $properties):static; + public function fromIterable(iterable $properties):SettingsContainerInterface; /** * Returns a JSON representation of the settings object * @see \json_encode() - * @see \chillerlan\Settings\SettingsContainerInterface::toArray() */ - public function toJSON(int|null $jsonOptions = null):string; + public function toJSON(int $jsonOptions = null):string; /** * Sets properties from a given JSON string * * @throws \Exception * @throws \JsonException - * @see \chillerlan\Settings\SettingsContainerInterface::fromIterable() */ - public function fromJSON(string $json):static; + public function fromJSON(string $json):SettingsContainerInterface; } -- cgit v1.2.3