phphacks / zend-httperrors
Installs: 8 656
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- zendframework/zend-mvc: ^3.1
- zendframework/zend-mvc-console: ^1.1.10
Requires (Dev)
- phpunit/phpunit: ^7.2
This package is not auto-updated.
Last update: 2025-03-22 17:50:39 UTC
README
Http compliant error reporting structure for zend framework.
composer require phphacks/zend-httperrors
Add to your modules.config.php
return [ 'Zend\HttpErrors', 'My\Other\Modules' ];
Then throw an HttpErrorException
class MyController { private $auth; public function __construct(AuthorizationService $auth) { $this->auth = $auth; } public function doSomethingAction() { if(!$auth->isAuthorized()) { throw new HttpUnauthorizedException(); } } }
That's just it.