|  Download <div align="center">
  <h1>PHP Extensible Objects</h1>
  <p align="center">  <a href="https://packagist.org/packages/norse-blue/extensible-objects"><img alt="Stable Release" src="https://img.shields.io/packagist/v/norse-blue/extensible-objects.svg?color=%235e81ac&style=popout-square"></a>
<a href="https://circleci.com/gh/norse-blue/php-extensible-objects/tree/master"><img alt="Build Status" src="https://img.shields.io/circleci/project/github/norse-blue/php-extensible-objects/master.svg?color=%23a3be8c&style=popout-square"></a>
<a href="https://php.net/releases"><img alt="PHP Version" src="https://img.shields.io/packagist/php-v/norse-blue/extensible-objects.svg?color=%23b48ead&style=popout-square"></a>
<a href="https://codeclimate.com/github/norse-blue/php-extensible-objects/maintainability"><img src="https://api.codeclimate.com/v1/badges/253dcf3f7fd57dab4150/maintainability" /></a>
<a href="https://codeclimate.com/github/norse-blue/php-extensible-objects/test_coverage"><img src="https://api.codeclimate.com/v1/badges/253dcf3f7fd57dab4150/test_coverage" /></a>
<a href="https://packagist.org/packages/norse-blue/extensible-objects"><img alt="Total Downloads" src="https://img.shields.io/packagist/dt/norse-blue/extensible-objects.svg?color=%235e81ac&style=popout-square"></a>
<a href="https://packagist.org/packages/norse-blue/extensible-objects"><img alt="GitHub" src="https://img.shields.io/github/license/norse-blue/php-extensible-objects.svg?color=%235e81ac&style=popout-square"></a>
   </p>
</div>
<hr> Extensible Objects is a PHP library that provides the mechanisms to dynamically add extension methods to objects. Installation>Requirements:
>- PHP 7.3+ Install Extensible Objects using Composer: composer require norse-blue/extensible-objects
 UsageCreate a base class that is to be extensible. To be extensible it has to implement 
NorseBlue\ExtensibleObjects\Contracts\Extensibleand it should useNorseBlue\ExtensibleObjects\Traits\HandlesExtensionMethods: namespace App;
use NorseBlue\ExtensibleObjects\Contracts\Extensible;
use NorseBlue\ExtensibleObjects\Traits\HandlesExtensionMethods;
class MyObject implements Extensible {
    use HandlesExtensionMethods;
}
 That's all there is to it. Now you can add extension methods to the class. The best way to do so is to create an
extension method class. This class must implement NorseBlue\ExtensibleObjects\Contracts\ExtensionMethodinterface. This is a special class that is invokable and returns a callback that will become the base class extension method.
You can pass any number of parameters to the __invokemethod and you have to pass them to the callback. The only caveat is they all have to be optional (have a default value): namespace App\Extensions;
class MyObjectExtension implements ExtensionMethod {
    public function __invoke() {
        return function($param1, $param2, $param3) {
            $str = '$param1: ' . $param1 . PHP_EOL . '$param2: ' .$param2 . PHP_EOL . '$param3: ';
            
            if (is_array($param3)) {
                foreach($param3 as $item) {
                    $str .= $item . ', ';
                }
            } else {
              $str .= 'Not an array';
            }
                        
            return rtrim($str, ', ');
        }
    }
}
 Now you have to register the extension method anywhere in your code (obviously before using it). To register the method you need to call the base class registerExtensionMethodfunction and pass it a name with
what you will call the extension and the callable (in this case the invokable class name): use App\MyObject;
use App\Extensions\MyObjectExtension;
MyObject::registerExtensionMethod('my_method', MyObjectExtension::class);
 Now you can use your method as it were part of the class: $obj = new MyObject;
echo $obj->my_method('My string', 3, ['foo', 'bar', 'baz']);
 The above code will output: $param1: My string
$param2: 3
$param3: foo, bar, baz
 The extension method will be run in the class context, as it were declared inside the class. Being so, you have access
to everything inside the base class (even private properties and methods). The extension method does not have to inherit
from the base class, but doing so will help your IDE with auto completion and static analysis if using some class
methods and properties. For more examples look in the tests folder. DocumentationFor the full documentation refer to the docs folder. ChangelogPlease refer to the CHANGELOG.md file for more information about what has changed recently. ContributingContributions to this project are accepted and encouraged. Please read the CONTRIBUTING.md file for details on contributions. CreditsSecurityIf you discover any security related issues, please email [email protected] instead of using the issue tracker. Support the developmentDo you like this project? Support it by donating <a href="https://www.buymeacoffee.com/axelitus"><img src=".assets/buy-me-a-coffee.svg" width="180" alt="Buy me a coffee"></img></a> LicenseExtensible Objects is open-sourced software licensed under the MIT license. |