Minor phpcs fixes

This commit is contained in:
Jeroen Thora 2014-12-07 18:02:39 +01:00
parent 15551f2e85
commit 9a0d5c3e2e
7 changed files with 19 additions and 19 deletions

View File

@ -164,7 +164,7 @@ class CurrencyDataGenerator extends AbstractDataGenerator
} }
/** /**
* @param $rootBundle * @param ArrayAccessibleResourceBundle $rootBundle
* *
* @return array * @return array
*/ */

View File

@ -186,7 +186,7 @@ class StringUtil
return $singulars; return $singulars;
} }
return $newBase.($firstUpper ? ucFirst($newSuffix) : $newSuffix); return $newBase.($firstUpper ? ucfirst($newSuffix) : $newSuffix);
} }
// Suffix is longer than word // Suffix is longer than word