Use single quotes where possible

Change-Id: I8c0098e4840d7eff16cf5818f2247b134946d77b
This commit is contained in:
Siebrand Mazeland
2016-03-05 17:00:45 +01:00
committed by Siebrand
parent 626d4e81d7
commit f8487a54eb
3 changed files with 12 additions and 12 deletions

View File

@@ -49,7 +49,7 @@ class LanguageNameIndexer extends Maintenance {
$buckets[$bucket][$name] = $code;
}
}
$this->output( "Total buckets: " . count( $buckets ) . "\n" );
$this->output( 'Total buckets: ' . count( $buckets ) . "\n" );
file_put_contents( 'langnames.ser', serialize( $buckets ) );
}
}