Completed
Pull Request — 2.x (#105)
by Sullivan
15:19 queued 13:00
created
src/Constraints/ZipCode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
  */
15 15
 class ZipCode extends Constraint
16 16
 {
17
-    const ALL           = 'all';
17
+    const ALL = 'all';
18 18
 
19 19
     public $country = self::ALL;
20 20
 
Please login to merge, or discard this patch.
src/Bundle/DependencyInjection/Compiler/TranslationPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
         $finder = Finder::create()
31 31
             ->files()
32
-            ->filter(function (\SplFileInfo $file) {
32
+            ->filter(function(\SplFileInfo $file) {
33 33
                 return 2 === substr_count($file->getBasename(), '.') && preg_match('/\.\w+$/', $file->getBasename());
34 34
             })
35 35
             ->in(__DIR__.'/../../../Resources/translations')
Please login to merge, or discard this patch.