Slide 100
Slide 100 text
Current Grumpy Practices
Data Providers
public function specializedResponseExamples()
{
return [
['BadRequest', 400, 'Bad request'],
['Unauthorized', 401, 'Unauthorized'],
['Forbidden', 403, 'Forbidden'],
['NotFound', 404, 'Resource not found'],
['InternalError', 500, 'Internal server error'],
];
}