-
-
Save BSN4/f82654775c8283be9c32144392d628fa to your computer and use it in GitHub Desktop.
Handy "chain()" helper method for making non-fluent classes/objects fluent.
This file contains hidden or 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) | |
{ | |
throw new BadMethodCallException(sprintf( | |
'Method %s::%s does not exist.', get_class($this->wrapped), $method | |
)); | |
$this->wrapped->{$method}(...$params); | |
return $this; | |
} | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment