| Conditions | 7 |
| Paths | 18 |
| Total Lines | 75 |
| Code Lines | 46 |
| 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 |
||
| 27 | public function execute() { |
||
| 28 | if ( $this->getVar( '_ExistingDBSettings' ) ) { |
||
| 29 | return 'skip'; |
||
| 30 | } |
||
| 31 | |||
| 32 | $r = $this->parent->request; |
||
| 33 | if ( $r->wasPosted() ) { |
||
| 34 | $status = $this->submit(); |
||
| 35 | |||
| 36 | if ( $status->isGood() ) { |
||
| 37 | $this->setVar( '_UpgradeDone', false ); |
||
| 38 | |||
| 39 | return 'continue'; |
||
| 40 | } else { |
||
| 41 | $this->parent->showStatusBox( $status ); |
||
| 42 | } |
||
| 43 | } |
||
| 44 | |||
| 45 | $this->startForm(); |
||
| 46 | |||
| 47 | $types = "<ul class=\"config-settings-block\">\n"; |
||
| 48 | $settings = ''; |
||
| 49 | $defaultType = $this->getVar( 'wgDBtype' ); |
||
| 50 | |||
| 51 | // Messages: config-dbsupport-mysql, config-dbsupport-postgres, config-dbsupport-oracle, |
||
| 52 | // config-dbsupport-sqlite, config-dbsupport-mssql |
||
| 53 | $dbSupport = ''; |
||
| 54 | foreach ( Installer::getDBTypes() as $type ) { |
||
| 55 | $dbSupport .= wfMessage( "config-dbsupport-$type" )->plain() . "\n"; |
||
| 56 | } |
||
| 57 | $this->addHTML( $this->parent->getInfoBox( |
||
| 58 | wfMessage( 'config-support-info', trim( $dbSupport ) )->text() ) ); |
||
| 59 | |||
| 60 | // It's possible that the library for the default DB type is not compiled in. |
||
| 61 | // In that case, instead select the first supported DB type in the list. |
||
| 62 | $compiledDBs = $this->parent->getCompiledDBs(); |
||
| 63 | if ( !in_array( $defaultType, $compiledDBs ) ) { |
||
| 64 | $defaultType = $compiledDBs[0]; |
||
| 65 | } |
||
| 66 | |||
| 67 | foreach ( $compiledDBs as $type ) { |
||
| 68 | $installer = $this->parent->getDBInstaller( $type ); |
||
| 69 | $types .= |
||
| 70 | '<li>' . |
||
| 71 | Xml::radioLabel( |
||
| 72 | $installer->getReadableName(), |
||
| 73 | 'DBType', |
||
| 74 | $type, |
||
| 75 | "DBType_$type", |
||
| 76 | $type == $defaultType, |
||
| 77 | [ 'class' => 'dbRadio', 'rel' => "DB_wrapper_$type" ] |
||
| 78 | ) . |
||
| 79 | "</li>\n"; |
||
| 80 | |||
| 81 | // Messages: config-header-mysql, config-header-postgres, config-header-oracle, |
||
| 82 | // config-header-sqlite |
||
| 83 | $settings .= Html::openElement( |
||
| 84 | 'div', |
||
| 85 | [ |
||
| 86 | 'id' => 'DB_wrapper_' . $type, |
||
| 87 | 'class' => 'dbWrapper' |
||
| 88 | ] |
||
| 89 | ) . |
||
| 90 | Html::element( 'h3', [], wfMessage( 'config-header-' . $type )->text() ) . |
||
| 91 | $installer->getConnectForm() . |
||
| 92 | "</div>\n"; |
||
| 93 | } |
||
| 94 | |||
| 95 | $types .= "</ul><br style=\"clear: left\"/>\n"; |
||
| 96 | |||
| 97 | $this->addHTML( $this->parent->label( 'config-db-type', false, $types ) . $settings ); |
||
| 98 | $this->endForm(); |
||
| 99 | |||
| 100 | return null; |
||
| 101 | } |
||
| 102 | |||
| 122 |
In PHP, under loose comparison (like
==, or!=, orswitchconditions), values of different types might be equal.For
stringvalues, the empty string''is a special case, in particular the following results might be unexpected: