Try and catch in php objected oriented way
Do It like a pro 🆗
$response = attempt(fn() => $this->client->get('ninja'))
    ->catch(ConnectException::class)
    ->done(fn() => []); //done can be replaced with ()Minimum requirement is PHP 7.2+ and Composer.
Install with this:
composer require transprime-research/attempt$response = Attempt::on(fn() => $this->client->get('ninja'))
    ->catch(AttemptTestException::class)(); // or ->done()
// Do something with Responsecatch method accepts an Exception object:
$response = Attempt::on(fn() => $this->client->get('ninja'))
    ->catch(\AttemptTestException())(); // or ->done()
// Do something with ResponseSet a default response:
$response = Attempt::on(fn() => $this->client->get('ninja'))
    ->with(['abc'])
    ->catch(AttemptTestException::class)
    ->done(); // ['abc'] is returned if exception is caught  // with default value
attempt(fn() => $this->execute())
    ->catch(AttemptTestException::class, 'It is done') //returns 'It is done'
    ->done();
    
// closure as default value
attempt(fn() => $this->execute())
    ->catch(AttemptTestException::class, fn() => 'It is done') //returns 'It is done'
    ->done();
    
// handle the resolved default value in done()
attempt(fn() => $this->execute())
    ->catch(AttemptTestException::class, fn() => 'error') //returns 'It is done'
    ->done(fn(Exception $ex, $severity) => logger($severity, $ex));Multiple Exception
$response = Attempt::on(fn() => $this->client->get('ninja'))
    ->catch(AttemptTestException::class, HttpResponseException::class)()
// Do something with ResponseMultiple Catch block
attempt(fn() => $this->execute())
    ->catch(NinjaException::class, 'Ninja error') //returns 'It is done')
    ->catch(AnotherExeption::class, 'Another error') //returns 'It is done'
    ->done(fn($ex) => logger()->error($ex));Do more with the caught Exception response:
$response = Attempt::on(fn() => $this->client->get('ninja'))
    ->catch(AttemptTestException::class, HttpResponseException::class)
    ->done(fn(\HttpResponseException $e) => logger()->error($e->getMessage()));
// Do something with ResponseMore to come: Pass the execution of a default value to a callable Class
// loading...This package is part of a series of "The Code Dare".
See other packages in this series here:
- https://github.com/transprime-research/piper [Smart Piping in PHP]
 - https://github.com/transprime-research/arrayed [A smarter Array now like an object]
 - https://github.com/omitobi/conditional [A smart PHP if...elseif...else statement]
 - https://github.com/omitobi/carbonate [A smart Carbon + Collection package]
 - https://github.com/omitobi/laravel-habitue [Jsonable Http Request(er) package with Collections response]
 
- TBA
 
MIT (See LICENCE file)
