CS fixes.

This commit is contained in:
resurtm
2013-05-11 15:38:07 +06:00
parent 1c1b2da5b1
commit 5575f53657
33 changed files with 306 additions and 293 deletions

View File

@@ -40,7 +40,7 @@ class StringHelperTest extends \yii\test\TestCase
'car' => 'cars',
);
foreach($testData as $testIn => $testOut) {
foreach ($testData as $testIn => $testOut) {
$this->assertEquals($testOut, StringHelper::pluralize($testIn));
$this->assertEquals(ucfirst($testOut), ucfirst(StringHelper::pluralize($testIn)));
}