Passed
Push — master ( ea85bb...10181d )
by Myint
09:26 queued 04:21
created
src/Services/Message/Mail.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -59,10 +59,10 @@  discard block
 block discarded – undo
59 59
 	 */
60 60
 	public $threadId;
61 61
 
62
-    /**
63
-     * @var
64
-     */
65
-    public $historyId;
62
+	/**
63
+	 * @var
64
+	 */
65
+	public $historyId;
66 66
 
67 67
 	/**
68 68
 	 * @var \Google_Service_Gmail_MessagePart
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	 */
77 77
 	public $service;
78 78
 
79
-    /**
79
+	/**
80 80
 	 * SingleMessage constructor.
81 81
 	 *
82 82
 	 * @param \Google_Service_Gmail_Message $message
Please login to merge, or discard this patch.
src/LaravelGmailServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 
11 11
 	public function boot()
12 12
 	{
13
-		$this->publishes([__DIR__ . '/config/gmail.php' => App::make('path.config') . '/gmail.php',]);
13
+		$this->publishes([__DIR__ . '/config/gmail.php' => App::make('path.config') . '/gmail.php', ]);
14 14
 	}
15 15
 
16 16
 	public function register()
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 		$this->mergeConfigFrom(__DIR__ . '/config/gmail.php', 'gmail');
20 20
 
21 21
 		// Main Service
22
-		$this->app->bind('laravelgmail', function ($app) {
22
+		$this->app->bind('laravelgmail', function($app) {
23 23
 			return new LaravelGmailClass($app['config']);
24 24
 		});
25 25
 
Please login to merge, or discard this patch.