VERSION
version 0.200002FUNCTIONS
status(status_code)
Dancer2::Core::HTTP->status(200); # returns 200 Dancer2::Core::HTTP->status('Not Found'); # returns 404 Dancer2::Core::HTTP->status('bad_request'); # 400
Returns a HTTP status code. If given an integer, it will return the value it received, else it will try to find the appropriate alias and return the correct status.
status_message(status_code)
Dancer2::Core::HTTP->status_message(200); # returns 'OK' Dancer2::Core::HTTP->status_message('error'); # returns 'Internal Server Error'
Returns the HTTP status message for the given status code.
AUTHOR
Dancer Core DevelopersCOPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Alexis Sukrieh.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.