Completed
Push — dev ( 0aff17...e6dbbe )
by Shingo
01:30
created
src/SendgridTransportServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,9 +17,9 @@
 block discarded – undo
17 17
      */
18 18
     public function register()
19 19
     {
20
-        $this->app->afterResolving(MailManager::class, function (MailManager $mail_manager) {
21
-            $mail_manager->extend("sendgrid", function ($config) {
22
-                if (! isset($config['api_key'])) {
20
+        $this->app->afterResolving(MailManager::class, function(MailManager $mail_manager) {
21
+            $mail_manager->extend("sendgrid", function($config) {
22
+                if (!isset($config['api_key'])) {
23 23
                     $config = $this->app['config']->get('services.sendgrid', []);
24 24
                 }
25 25
                 $client = new HttpClient(Arr::get($config, 'guzzle', []));
Please login to merge, or discard this patch.