Completed
Push — master ( af5131...20ae7d )
by Simonas
151:41 queued 86:43
created
Command/ExportCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $domains = $input->getOption('domains');
61 61
         $export->export($domains);
62 62
 
63
-        $prettify = function ($array) {
63
+        $prettify = function($array) {
64 64
             return !empty($array) ? implode('</comment><info>`, `</info><comment>', $array) : 'all';
65 65
         };
66 66
 
Please login to merge, or discard this patch.
Document/Translation.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     /**
143 143
      * Sets tags.
144 144
      *
145
-     * @param Tag[]|Collection $tags
145
+     * @param Collection $tags
146 146
      */
147 147
     public function setTags(Collection $tags = null)
148 148
     {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-     * @param Message[]|Collection $messages
205
+     * @param Collection $messages
206 206
      */
207 207
     public function setMessages(Collection $messages = null)
208 208
     {
Please login to merge, or discard this patch.
Event/TranslationEditMessageEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * @param Request $request
34
-     * @param object  $document
34
+     * @param \ReflectionClass  $document
35 35
      */
36 36
     public function __construct(Request $request, $document)
37 37
     {
Please login to merge, or discard this patch.
Service/Import.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -147,9 +147,8 @@
 block discarded – undo
147 147
     public function importBundlesTranslationFiles($bundles, $isBundle = false)
148 148
     {
149 149
         foreach ($bundles as $bundle) {
150
-            $dir = $isBundle?
151
-                dir($bundle->getPath())->path :
152
-                dirname((new \ReflectionClass($bundle))->getFilename());
150
+            $dir = $isBundle ?
151
+                dir($bundle->getPath())->path : dirname((new \ReflectionClass($bundle))->getFilename());
153 152
 
154 153
             $this->importBundleTranslationFiles($dir);
155 154
         }
Please login to merge, or discard this patch.