Skip to content

rebers/response-helper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

devboxr/response-helper

A simple response helper that I use for my Laravel/Lumen 5+. Its very simple goal is to have unified responses across a specific project. I may implement a "Problem Details" inspired approach http://datatracker.ietf.org/doc/draft-nottingham-http-problem/.

Installation

Composer install: composer require devboxr/response-helper

Use

<?php

use Devboxr\Helpers;

/**
 * There are more examples and the ResponseHelper is extended all the time.
 */

// will return a status 200
ResponseHelper::success();

// will return a status 404
ResponseHelper::notFound();

 // will return a status 500
ResponseHelper::serverError();

// Server error 500 with a reason
ResponseHelper::serverError(500, ['error' => 'Could not contact external provider.']);

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages