Completed
Push — master ( c70c47...2aa4c0 )
by Matze
05:58
created
src/Annotations/Builder/CompilerPass.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      * @param ReflectionClass $reflectionClass
18 18
      * @param Service|CompilerPassAnnotation $annotation
19 19
      * @param Definition $definition
20
-     * @return array
20
+     * @return Definition[]
21 21
      *
22 22
      * @throws Exception
23 23
      */
Please login to merge, or discard this patch.
src/DependencyInjection/CompilerPass/LocaleCompilerPass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
         /** @var Glob $glob */
24 24
         $glob = $container->get(Glob::class);
25 25
 
26
-        $locales = $glob->execGlob(ROOT . 'lang/*.po');
27
-        $locales = array_map(function ($file) {
26
+        $locales = $glob->execGlob(ROOT.'lang/*.po');
27
+        $locales = array_map(function($file) {
28 28
             return basename($file, '.po');
29 29
         }, $locales);
30 30
 
Please login to merge, or discard this patch.