Passed
Push — master ( baf23d...e8f6e3 )
by Antonio Carlos
15:42 queued 08:06
created
src/Repositories/Message.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
      */
24 24
     public function addMessage($message)
25 25
     {
26
-        collect((array) $message)->each(function ($item) {
27
-            collect($item)->flatten()->each(function ($flattened) {
26
+        collect((array) $message)->each(function($item) {
27
+            collect($item)->flatten()->each(function($flattened) {
28 28
                 $this->messages->push($flattened);
29 29
             });
30 30
         });
Please login to merge, or discard this patch.
src/migrations/2014_02_01_311070_create_firewall_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('firewall', function (Blueprint $table) {
16
+        Schema::create('firewall', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
 
19 19
             $table->string('ip_address', 39)->unique()->index();
Please login to merge, or discard this patch.