emeraldinspirations/lib-createconstructcallable

Returns an anonymous callable function referencing the constructor of a class

1.0.0 2017-09-03 09:09 UTC

This package is not auto-updated.

Last update: 2024-04-24 00:42:44 UTC


README

emeraldinspirations logo

lib-createconstructcallable

A component of emeraldinspiration's library.

Returns an anonymous callable function referencing the constructor of a class

PHP does not yet have a syntax for creating a callable for the constructor of a class. Some workarounds involve using ReflectionClass. (See: https://stackoverflow.com/q/24129450/6699286)

This class provides an alternate option. It creates an anonymous function that fulfills the callable need and runs the relevant constructor.

Installing / Getting started

This project has no dependencies, so can simply be required with composer

composer require emeraldinspirations/lib-createconstructcallable

How to use

<?php

$Callable = ConstructCallableCreator::createConstructCallable(
    ExampleClass::class
);

$NewClass = $Callable($Param1, $Param2);
//Same result as new ExampleClass($Param1, $Param2)

Licensing

The code in this project is licensed under MIT license.