Errors
Collects formatted errors.
Usage
<?php
use ICanBoogie\ErrorCollection;
$errors = new ErrorCollection;
var_dump($errors['password']);
// null
$errors->add('password');
var_dump($errors['password']);
// [ Error{ format: '', params: [] } ]
$errors->add('password', 'Invalid password: {value}', [ 'value' => "123" ]);
var_dump($errors['password']);
// 'Invalid password: 123'
$errors['password'] = 'Ugly password';
var_dump($errors['password']);
// array('Invalid password', 'Ugly password')
$errors->add_generic('General error');
count($errors);
// 3
$errors->each(function($name, $message) {
echo "$name: $message\n";
});
// General error
// password: Invalid password
// password: Ugly passwordRequirements
The package requires PHP 5.5 or later.
Installation
The recommended way to install this package is through Composer:
$ composer require icanboogie/errors
Cloning the repository
The package is available on GitHub, its repository can be cloned with the following command line:
$ git clone https://github.com/ICanBoogie/Errors.git
Documentation
The package is documented as part of the ICanBoogie framework
documentation. You can generate the documentation for the package and its dependencies with
the make doc command. The documentation is generated in the build/docs directory.
ApiGen is required. The directory can later be cleaned with
the make clean command.
Testing
The test suite is ran with the make test command. PHPUnit and
Composer need to be globally available to run the suite.
The command installs dependencies as required. The make test-coverage command runs test suite
and also creates an HTML coverage report in "build/coverage". The directory can later be cleaned
with the make clean command.
The package is continuously tested by Travis CI.
License
icanboogie/errors is licensed under the New BSD License - See the LICENSE file for details.