| Conditions | 2 |
| Paths | 2 |
| Total Lines | 55 |
| Code Lines | 53 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 34 | public static function getMessage( $code ) { |
||
| 35 | static $statusMessage = [ |
||
| 36 | 100 => 'Continue', |
||
| 37 | 101 => 'Switching Protocols', |
||
| 38 | 102 => 'Processing', |
||
| 39 | 200 => 'OK', |
||
| 40 | 201 => 'Created', |
||
| 41 | 202 => 'Accepted', |
||
| 42 | 203 => 'Non-Authoritative Information', |
||
| 43 | 204 => 'No Content', |
||
| 44 | 205 => 'Reset Content', |
||
| 45 | 206 => 'Partial Content', |
||
| 46 | 207 => 'Multi-Status', |
||
| 47 | 300 => 'Multiple Choices', |
||
| 48 | 301 => 'Moved Permanently', |
||
| 49 | 302 => 'Found', |
||
| 50 | 303 => 'See Other', |
||
| 51 | 304 => 'Not Modified', |
||
| 52 | 305 => 'Use Proxy', |
||
| 53 | 307 => 'Temporary Redirect', |
||
| 54 | 400 => 'Bad Request', |
||
| 55 | 401 => 'Unauthorized', |
||
| 56 | 402 => 'Payment Required', |
||
| 57 | 403 => 'Forbidden', |
||
| 58 | 404 => 'Not Found', |
||
| 59 | 405 => 'Method Not Allowed', |
||
| 60 | 406 => 'Not Acceptable', |
||
| 61 | 407 => 'Proxy Authentication Required', |
||
| 62 | 408 => 'Request Timeout', |
||
| 63 | 409 => 'Conflict', |
||
| 64 | 410 => 'Gone', |
||
| 65 | 411 => 'Length Required', |
||
| 66 | 412 => 'Precondition Failed', |
||
| 67 | 413 => 'Request Entity Too Large', |
||
| 68 | 414 => 'Request-URI Too Large', |
||
| 69 | 415 => 'Unsupported Media Type', |
||
| 70 | 416 => 'Request Range Not Satisfiable', |
||
| 71 | 417 => 'Expectation Failed', |
||
| 72 | 422 => 'Unprocessable Entity', |
||
| 73 | 423 => 'Locked', |
||
| 74 | 424 => 'Failed Dependency', |
||
| 75 | 428 => 'Precondition Required', |
||
| 76 | 429 => 'Too Many Requests', |
||
| 77 | 431 => 'Request Header Fields Too Large', |
||
| 78 | 500 => 'Internal Server Error', |
||
| 79 | 501 => 'Not Implemented', |
||
| 80 | 502 => 'Bad Gateway', |
||
| 81 | 503 => 'Service Unavailable', |
||
| 82 | 504 => 'Gateway Timeout', |
||
| 83 | 505 => 'HTTP Version Not Supported', |
||
| 84 | 507 => 'Insufficient Storage', |
||
| 85 | 511 => 'Network Authentication Required', |
||
| 86 | ]; |
||
| 87 | return isset( $statusMessage[$code] ) ? $statusMessage[$code] : null; |
||
| 88 | } |
||
| 89 | |||
| 115 |
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: