tabuna / failback
Small wrapper for creating a branch of inaccessibility
2.0
2020-01-08 03:17 UTC
Requires
- php: ~7.1
Requires (Dev)
- phpunit/phpunit: >=7.0
- squizlabs/php_codesniffer: ^3.0
This package is auto-updated.
Last update: 2024-10-22 04:46:51 UTC
README
Actions for Failback is a lightweight wrapper that empowers you to handle unavailability gracefully.
Installation
To install the package, you can use Composer. Simply run the following command:
$ composer require tabuna/failback
Usage
Setting a Default Value:
You can create an action with a default value using the following code:
use Tabuna\FailBack\Action; // $result = 'default'; $result = Action::make(function () { throw new \Exception(); }, 'default')->run(); // Alternatively, you can use the short helper $result = failBack(function () { throw new \Exception(); }, 'default')();
Adding Fallback Actions:
You can define multiple fallback actions using the fail
method:
// $result = true; $result = failBack(function () { throw new \Exception(); })->fail(function () { throw new \Error(); })->fail(function () { return true; })();
Utilizing Classes:
To specify a fallback action using a class, create an anonymous class with an __invoke
method:
$class = new class { /** * @return bool */ public function __invoke(): bool { return true; } }; // $result = true; $result = failBack(function () { throw new Exception(); })->fail($class)->run();
License
The MIT License (MIT). Please see License File for more information.