Exceptions
Be explicit about error
PHP
// GOOD
abort(404, "The member with the ID $memberId could not be found.");
// BAD
abort(404);
Be explicit about error
// GOOD
abort(404, "The member with the ID $memberId could not be found.");
// BAD
abort(404);