Completed
Push — master ( 3f99c9...f99ebc )
by Quentin
8s
created
src/Majora/Framework/Model/TranslatableInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
     /**
20 20
      * define object default locale to use
21 21
      *
22
-     * @param string $currentLocale
23 22
      * @return self
24 23
      */
25 24
     public function setDefaultLocale($defaultLocale);
Please login to merge, or discard this patch.
src/Majora/Framework/Date/Clock.php 1 patch
Spacing   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,8 +29,7 @@  discard block
 block discarded – undo
29 29
     protected function mock($date)
30 30
     {
31 31
         $this->currentDate = $date instanceof \DateTime ?
32
-            $date :
33
-            date_create($date)
32
+            $date : date_create($date)
34 33
         ;
35 34
     }
36 35
 
@@ -49,8 +48,7 @@  discard block
 block discarded – undo
49 48
         ;
50 49
 
51 50
         return empty($format) ?
52
-            $date :
53
-            $date->format($format)
51
+            $date : $date->format($format)
54 52
         ;
55 53
     }
56 54
 }
Please login to merge, or discard this patch.
src/Majora/Framework/Loader/Bridge/Form/Type/EntityCollectionType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
                     'loader_method' => 'choiceList',
40 40
                     'choice_value' => 'id',
41 41
                     'choice_label' => function ($choice) {
42
-                        return (string)$choice;
42
+                        return (string) $choice;
43 43
                     },
44 44
                     'choices' => function (Options $options) {
45 45
 
Please login to merge, or discard this patch.