@@ -16,7 +16,7 @@ |
||
16 | 16 | } |
17 | 17 | $token = $activation->code; |
18 | 18 | $view = config('auth.activations.view'); |
19 | - app('mailer')->send($view, compact('user', 'token'), function (Message $m) use ($user, $token) { |
|
19 | + app('mailer')->send($view, compact('user', 'token'), function(Message $m) use ($user, $token) { |
|
20 | 20 | $m->to($user->email)->subject($this->getActivationEmailSubject()); |
21 | 21 | }); |
22 | 22 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('files', function (Blueprint $table) { |
|
15 | + Schema::create('files', function(Blueprint $table) { |
|
16 | 16 | $table->engine = 'InnoDb'; |
17 | 17 | $table->string('hash', 64)->primary(); |
18 | 18 | $table->string('disk', 64)->default('localhost'); |