PHP code example of webhappens / conditional-methods
1. Go to this page and download the library: Download webhappens/conditional-methods library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
webhappens / conditional-methods example snippets
use \WebHappens\ConditionalMethods\ConditionalMethods;
public function __call($method, $arguments)
{
if ($type = static::matchConditionalMethod($method)) {
return $this->callConditionalMethod($type, $method, $arguments);
}
// ...
// throw new \BadMethodCallException();
}
$insurer->renewIf($car->insuranceIsDue(), $car);
if ($car->insuranceIsDue()) {
$insurer->renew($car);
}