@@ -23,8 +23,8 @@ |
||
| 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 | }); |
@@ -13,7 +13,7 @@ |
||
| 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(); |