| Conditions | 9 |
| Paths | 32 |
| Total Lines | 53 |
| Code Lines | 35 |
| Lines | 15 |
| Ratio | 28.3 % |
| 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 |
||
| 59 | public function execute() { |
||
| 60 | $params = $this->extractRequestParams(); |
||
| 61 | |||
| 62 | $opt = 0; |
||
| 63 | if ( $this->isRaw ) { |
||
| 64 | $opt |= FormatJson::ALL_OK; |
||
| 65 | $transform = []; |
||
| 66 | } else { |
||
| 67 | switch ( $params['formatversion'] ) { |
||
| 68 | View Code Duplication | case 1: |
|
| 69 | $opt |= $params['utf8'] ? FormatJson::ALL_OK : FormatJson::XMLMETA_OK; |
||
| 70 | $transform = [ |
||
| 71 | 'BC' => [], |
||
| 72 | 'Types' => [ 'AssocAsObject' => true ], |
||
| 73 | 'Strip' => 'all', |
||
| 74 | ]; |
||
| 75 | break; |
||
| 76 | |||
| 77 | case 2: |
||
| 78 | View Code Duplication | case 'latest': |
|
| 79 | $opt |= $params['ascii'] ? FormatJson::XMLMETA_OK : FormatJson::ALL_OK; |
||
| 80 | $transform = [ |
||
| 81 | 'Types' => [ 'AssocAsObject' => true ], |
||
| 82 | 'Strip' => 'all', |
||
| 83 | ]; |
||
| 84 | break; |
||
| 85 | |||
| 86 | default: |
||
| 87 | $this->dieUsage( __METHOD__ . |
||
| 88 | ': Unknown value for \'formatversion\'', 'unknownformatversion' ); |
||
| 89 | } |
||
| 90 | } |
||
| 91 | $data = $this->getResult()->getResultData( null, $transform ); |
||
|
|
|||
| 92 | $json = FormatJson::encode( $data, $this->getIsHtml(), $opt ); |
||
| 93 | |||
| 94 | // Bug 66776: wfMangleFlashPolicy() is needed to avoid a nasty bug in |
||
| 95 | // Flash, but what it does isn't friendly for the API, so we need to |
||
| 96 | // work around it. |
||
| 97 | if ( preg_match( '/\<\s*cross-domain-policy(?=\s|\>)/i', $json ) ) { |
||
| 98 | $json = preg_replace( |
||
| 99 | '/\<(\s*cross-domain-policy(?=\s|\>))/i', '\\u003C$1', $json |
||
| 100 | ); |
||
| 101 | } |
||
| 102 | |||
| 103 | if ( isset( $params['callback'] ) ) { |
||
| 104 | $callback = preg_replace( "/[^][.\\'\\\"_A-Za-z0-9]/", '', $params['callback'] ); |
||
| 105 | # Prepend a comment to try to avoid attacks against content |
||
| 106 | # sniffers, such as bug 68187. |
||
| 107 | $this->printText( "/**/$callback($json)" ); |
||
| 108 | } else { |
||
| 109 | $this->printText( $json ); |
||
| 110 | } |
||
| 111 | } |
||
| 112 | |||
| 139 |
If you define a variable conditionally, it can happen that it is not defined for all execution paths.
Let’s take a look at an example:
In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.
Available Fixes
Check for existence of the variable explicitly:
Define a default value for the variable:
Add a value for the missing path: