PHP code example of georgeff / problem
1. Go to this page and download the library: Download georgeff/problem 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/ */
georgeff / problem example snippets
use Georgeff\Problem\DatabaseExceptionBuilder;
use Georgeff\Problem\ValidationExceptionBuilder;
use Georgeff\Problem\Exception\DomainException;
// Database failure
DatabaseExceptionBuilder::new()
->connectionFailed()
->connection('db.example.com', 5432, 'myapp')
->throw();
// Validation failure
$builder = ValidationExceptionBuilder::new()
->le snapshot
$e->getErrorCode(); // "DB_0001"
}