@@ -72,7 +72,7 @@ |
||
| 72 | 72 | |
| 73 | 73 | $injectionData = ['user' => $user, 'password' => $mail_password]; |
| 74 | 74 | |
| 75 | - Mail::send('emails.new_user', $injectionData, function ($m) use ($user, $mailbox) { |
|
| 75 | + Mail::send('emails.new_user', $injectionData, function($m) use ($user, $mailbox) { |
|
| 76 | 76 | $m->from($mailbox); |
| 77 | 77 | $m->to($user->email)->subject('Your user credentials!'); |
| 78 | 78 | }); |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | * |
| 13 | 13 | * @var array |
| 14 | 14 | */ |
| 15 | - protected $commands = [ ]; |
|
| 15 | + protected $commands = []; |
|
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | 18 | * Define the application's command schedule. |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | 'm.d.Y' => '12.23.2010', |
| 39 | 39 | ); |
| 40 | 40 | |
| 41 | - $data['time_formats'] = array ( |
|
| 41 | + $data['time_formats'] = array( |
|
| 42 | 42 | 'H:i' => '23:00', |
| 43 | 43 | 'h:ia' => '11:00pm', |
| 44 | 44 | 'h:iA' => '11:00PM', |