Completed
Pull Request — master (#3)
by Pascal
05:23
created
Writer/MessageCatalogueWriter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     }
26 26
 
27 27
     /**
28
-     * @param array       $messageCatalogues
28
+     * @param MessageCatalogue[]       $messageCatalogues
29 29
      * @param string      $format
30 30
      * @param null|string $path
31 31
      */
Please login to merge, or discard this patch.
Extractor/TranslationExtractor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         if (!$this->filesystem->exists($path)) {
53 53
             throw new \RuntimeException(sprintf('Path %s does not exist', $path));
54 54
         }
55
-        $files = $this->finder->files()->name('/[a-z]+\.[a-z]{2}\.'.$format.'/')->in($path);
55
+        $files = $this->finder->files()->name('/[a-z]+\.[a-z]{2}\.' . $format . '/')->in($path);
56 56
 
57 57
         /** @var SplFileInfo $file */
58 58
         foreach ($files as $file) {
Please login to merge, or discard this patch.