Completed
Pull Request — master (#46)
by
unknown
33:19
created
app/Listeners/Users/SendActivationLinkViaEmail.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
database/migrations/2015_11_17_140922_create_files_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.