1. Go to this page and download the library: Download prewk/result 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/ */
prewk / result example snippets
composer
use Prewk\Result;
use Prewk\Result\{Ok, Err};
function someApiCall(): Result {
// ...
if ($apiCallSuccesful) {
return new Ok($results);
} else {
return new Err($error);
}
}
function anotherApiCall(): Result {
// ...
if ($apiCallSuccesful) {
return new Ok($results);
} else {
return new Err($error);
}
}
// Fallback to value
$value = someApiCall()->unwrapOr(null);
// Fallback to result and throw an exception if both fail
$value = someApiCall()->orElse(function($err) {
return anotherApiCall();
})->unwrap();
// Throw custom exception on error
$value = someApiCall()->expect(new Exception("Oh noes!"));
ok(); // new Prewk\Result\Ok(null);
ok($val); // new Prewk\Result\Ok($val);
err($e); // new Prewk\Result\Err($e);
// This will call all three api calls regardless of successes/errors
$this
->apiCall()
->or(anotherApiCall())
->and(thirdApiCall());