2
0
mirror of https://github.com/opencultureconsulting/php-basics.git synced 2025-03-30 00:00:15 +01:00
php-basics/src/Traits/Setter.php

92 lines
2.8 KiB
PHP
Raw Normal View History

2023-10-11 13:31:20 +02:00
<?php
2023-09-11 19:31:06 +02:00
/**
2024-01-23 17:58:33 +01:00
* PHP Basics
*
* Copyright (C) 2024 Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
2023-09-11 19:31:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2024-01-23 17:58:33 +01:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2023-09-11 19:31:06 +02:00
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2024-01-23 17:58:33 +01:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2023-09-11 19:31:06 +02:00
*/
2023-10-11 13:31:20 +02:00
declare(strict_types=1);
2023-11-18 18:13:51 +01:00
namespace OCC\Basics\Traits;
2023-11-06 17:54:14 +01:00
use InvalidArgumentException;
2023-09-11 19:31:06 +02:00
2024-02-16 16:16:05 +01:00
use function method_exists;
use function property_exists;
use function sprintf;
use function ucfirst;
2023-09-11 19:31:06 +02:00
/**
* Writes data to inaccessible properties by using magic methods.
*
* To make a `protected` or `private` property writable, provide a method named
* `_magicSet{Property}()` which handles the writing. Replace `{Property}` in
* the method's name with the name of the actual property (with an uppercase
* first letter).
*
* > Example: If the property is named `$fooBar`, the "magic" method has to be
* > `_magicSetFooBar()`. This method is then called when `$fooBar` is written
2024-02-12 11:31:48 +01:00
* > to in a context where it normally would not be accessible.
*
2023-09-11 19:31:06 +02:00
* @author Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
2024-01-23 17:58:33 +01:00
* @package Basics\Traits
2023-09-11 19:31:06 +02:00
*/
trait Setter
{
/**
* Write data to an inaccessible property.
*
2023-10-11 13:31:20 +02:00
* @param string $property The class property to set
* @param mixed $value The new value of the property
2023-09-11 19:31:06 +02:00
*
* @return void
*
2024-02-12 11:31:48 +01:00
* @throws InvalidArgumentException if the property or setter method do not exist
2023-09-11 19:31:06 +02:00
*/
2023-10-11 17:03:44 +02:00
public function __set(string $property, mixed $value): void
2023-09-11 19:31:06 +02:00
{
$method = '_magicSet' . ucfirst($property);
if (property_exists(static::class, $property) && method_exists(static::class, $method)) {
2023-09-11 19:31:06 +02:00
$this->$method($value);
} else {
2023-11-18 18:50:14 +01:00
throw new InvalidArgumentException(
sprintf(
2024-03-31 17:41:04 +02:00
'Invalid property or missing setter method for property: %s::$%s.',
2023-11-18 18:50:14 +01:00
static::class,
$property
)
);
2023-09-11 19:31:06 +02:00
}
}
/**
* Unset an inaccessible property.
*
2023-10-11 13:31:20 +02:00
* @param string $property The class property to unset
2023-09-11 19:31:06 +02:00
*
* @return void
*/
2023-10-11 17:03:44 +02:00
public function __unset(string $property): void
2023-09-11 19:31:06 +02:00
{
2023-09-29 19:28:08 +02:00
try {
$this->__set($property, null);
2023-11-18 17:37:22 +01:00
} catch (InvalidArgumentException) {
2024-09-07 21:30:06 +02:00
// Unsetting an invalid property should not lead to an error.
2023-11-18 17:37:22 +01:00
}
2023-09-11 19:31:06 +02:00
}
}