webhappens / magic-properties
Add a simple fluid interface for getters, setters, accessors and mutators to any PHP class.
Installs: 3 878
Dependents: 1
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^7.3|^8.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.12
- phpunit/phpunit: 7.5|^8.2|^9.0
- symfony/var-dumper: ^4.3|^5.0
This package is auto-updated.
Last update: 2024-10-23 23:38:34 UTC
README
Magic properties
Add a simple fluid interface for getters, setters, accessors and mutators to any PHP class.
Installation
Install via composer:
composer require webhappens/magic-properties
Insert the MagicProperties
trait into your class:
use \WebHappens\MagicProperties\MagicProperties;
If your class is already using the __call
method, add the following to it:
public function __call($method, $arguments) { // ... if ($property = $this->matchMagicProperty($name)) { return $this->callMagicProperty($property, $arguments); } // ... // throw new \BadMethodCallException(); }
Getters
Getters support both "property" and "method" syntax and allow you to get public
and protected
properties.
$person = new class { use MagicProperties; public $name = 'Sam'; protected $role = 'developer'; }; $name = $person->name; // or $name = $person->name(); $role = $person->role; // or $role = $person->role();
The Getter "method" name may optionally be prefixed with "get" if you prefer that syntax.
$person->getName();
Setters
Setters support both "property" and "method" syntax and allow you to set public
and protected
properties.
$person = new class { use MagicProperties; public $name; protected $role; }; $person->name = 'Sam'; // or $person->name('Sam'); $person->role = 'developer'; // or $person->role('developer');
The Setter "method" name may optionally be prefixed with "set" if you prefer that syntax.
$person->setName('Sam');
Readonly properties
If you want to protect specific protected
properties from being set from outside the class, you may list them in an $readonly
array inside your class.
protected $readonly = ['id'];
Readonly properties can still be changed from inside the class using the standard php syntax.
Chainable setters
When using the "method" syntax for Setters you may set multiple properties in a single chain.
$person->name('Sam')->role('developer');
Accessors
When a Getter is called for a protected
property from outside the class, the value is passed through an Accessor method, giving you a chance to modify it before it is returned.
When called from inside the class, it is only passed through an Accessor method when "method" syntax is used.
public
and private
properties are never passed through an Accessor method.
To add an Accessor method for a protected
property, simply create a protected
method that follows the Accessor naming convention of get{PropertyName}Property
.
The method will receive the stored value as a single argument and should return the modified value.
$person = new class { use MagicProperties; protected $role = 'developer'; protected function getRoleProperty($value) { return ucwords($value); } }; $role = $person->role; // or $role = $person->role();
In this example, the role will be returned with an uppercase first letter.
Mutators
When a Setter is called for a protected
property from outside the class, the value is passed through a Mutator method, giving you a chance to modify it before it is set.
When called from inside the class, it is only passed through a Mutator method when "method" syntax is used.
public
and private
properties are never passed through a Mutator method.
To add a Mutator method for a protected
property, simply create a protected
method that follows the Mutator naming convention of set{PropertyName}Property
.
The method will receive the passed value as a single argument and should return the modified value.
$person = new class { use MagicProperties; protected $role; protected function setRoleProperty($value) { return ucwords($value); } }; $person->role = 'developer'; // or $person->role('developer');
In this example, the role will be stored with an uppercase first letter.
Serialization
Call the getMagicProperties
method to serialize all public
and protected
properties to an array.
Credits
- Sam Leicester: sam@webhappens.co.uk
- Ben Gurney: ben@webhappens.co.uk
- All Contributors
Our Str
class is just a copy of some functions from Laravel's Str
helper.
License
The MIT License (MIT). Please see License File for more information.