| @@ -68,7 +68,6 @@ | ||
| 68 | 68 | * Initializes iterator, namespace, rootKey to generate. | 
| 69 | 69 | * | 
| 70 | 70 | * @param Bundle $bundle | 
| 71 | - * @param string $className | |
| 72 | 71 | */ | 
| 73 | 72 | protected function initialize(array $config, Bundle $bundle) | 
| 74 | 73 |      { | 
| @@ -241,7 +241,6 @@ | ||
| 241 | 241 | /** | 
| 242 | 242 | * Creates master node. | 
| 243 | 243 | * | 
| 244 | - * @param ConfigurationInterface $configuration | |
| 245 | 244 | * | 
| 246 | 245 | * @return ArrayNode | 
| 247 | 246 | */ | 
| @@ -92,7 +92,6 @@ | ||
| 92 | 92 | * @param array $validated merged/validated array | 
| 93 | 93 | * @param array $validating merging/validating array | 
| 94 | 94 | * @param ConfigurationInterface $configuration configuration | 
| 95 | - * @param ArrayNode $node master node | |
| 96 | 95 | * | 
| 97 | 96 | * @return array list of (validated array, merged ArrayNode) | 
| 98 | 97 | */ | 
| @@ -37,7 +37,7 @@ | ||
| 37 | 37 | * | 
| 38 | 38 | * @param string $file | 
| 39 | 39 | * | 
| 40 | - * @return SimpleXMLElement | |
| 40 | + * @return \SimpleXMLElement | |
| 41 | 41 | */ | 
| 42 | 42 | protected function loadFile($file) | 
| 43 | 43 |      { | 
| @@ -39,7 +39,6 @@ | ||
| 39 | 39 | /** | 
| 40 | 40 | * Sets a current locale to find cache file array. | 
| 41 | 41 | * | 
| 42 | - * @param string $locale | |
| 43 | 42 | * | 
| 44 | 43 | * @return ConfigCache | 
| 45 | 44 | */ | 
| @@ -37,7 +37,7 @@ | ||
| 37 | 37 | * | 
| 38 | 38 | * @param string $locale | 
| 39 | 39 | * | 
| 40 | - * @return YamlFileLoader | |
| 40 | + * @return ArrayLoader | |
| 41 | 41 | */ | 
| 42 | 42 | public function setLocale($locale) | 
| 43 | 43 |      { | 
| @@ -63,7 +63,7 @@ | ||
| 63 | 63 | /** | 
| 64 | 64 | * Returns the resource tied to this Resource. | 
| 65 | 65 | * | 
| 66 | - * @return mixed The resource | |
| 66 | + * @return string The resource | |
| 67 | 67 | */ | 
| 68 | 68 | public function getResource() | 
| 69 | 69 |      { | 
| @@ -42,7 +42,7 @@ discard block | ||
| 42 | 42 | ->defaultValue(0) | 
| 43 | 43 | ->validate() | 
| 44 | 44 | // priority must be less than LocaleListener priority | 
| 45 | -                                ->ifTrue(function ($priority) { | |
| 45 | +                                ->ifTrue(function($priority) { | |
| 46 | 46 | return $priority >= Configuration::getPriorityMax(); | 
| 47 | 47 | }) | 
| 48 | 48 |                                  ->thenInvalid('ConfigCacheListener priority[%s] must be less than LocaleListener priority['.Configuration::getPriorityMax().']') | 
| @@ -50,7 +50,7 @@ discard block | ||
| 50 | 50 | ->end() | 
| 51 | 51 | ->end() | 
| 52 | 52 | ->validate() | 
| 53 | -                        ->ifTrue(function ($locale) { | |
| 53 | +                        ->ifTrue(function($locale) { | |
| 54 | 54 | return $locale['enabled'] && $locale['locales'] === array(); | 
| 55 | 55 | }) | 
| 56 | 56 |                          ->thenInvalid('yahoo_japan_config_cache.locale.locales must be configured.') | 
| @@ -251,7 +251,7 @@ | ||
| 251 | 251 |      { | 
| 252 | 252 | $finder = Finder::create() | 
| 253 | 253 | ->files() | 
| 254 | -            ->filter(function (\SplFileInfo $file) use ($excludes) { | |
| 254 | +            ->filter(function(\SplFileInfo $file) use ($excludes) { | |
| 255 | 255 |                  foreach ($excludes as $exclude) { | 
| 256 | 256 |                      if (strpos($file->getRealPath(), $exclude) !== false) { | 
| 257 | 257 | return false; |