-
-
Save wilmanbarrios/f3d0ab4a1e2660c856560ed830cabd95 to your computer and use it in GitHub Desktop.
Handy "chain()" helper method for making non-fluent classes/objects fluent.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function chain($object) | |
{ | |
return new class ($object) { | |
public function __construct($object) | |
{ | |
$this->wrapped = $object; | |
} | |
public function __call($method, $params) | |
{ | |
$this->wrapped->{$method}(...$params); | |
return $this; | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment