Completed
Push — master ( ce9370...d6dad5 )
by Adam
02:20
created
src/Handler/AirbrakeExceptionHandler.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,6 @@
 block discarded – undo
43 43
     /**
44 44
      * Render an exception into an HTTP response.
45 45
      *
46
-     * @param \Symfony\Component\Console\Output\OutputInterface $output
47 46
      * @param \Exception                                        $e
48 47
      *
49 48
      * @return \Symfony\Component\HttpFoundation\Response
Please login to merge, or discard this patch.
src/AirbrakeServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function register()
28 28
     {
29
-        $this->app->singleton('Airbrake\Instance', function ($app) {
29
+        $this->app->singleton('Airbrake\Instance', function($app) {
30 30
             $airbrake = new Notifier([
31 31
                 'projectId'  => config('airbrake.id'),
32 32
                 'projectKey' => config('airbrake.key'),
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
                 'host' => config('airbrake.host'),
35 35
             ]);
36 36
 
37
-            $airbrake->addFilter(function ($notice) {
37
+            $airbrake->addFilter(function($notice) {
38 38
                 $this->setEnvName($notice);
39 39
 
40 40
                 foreach ($this->getEnvKeys() as $envKey) {
Please login to merge, or discard this patch.
config/airbrake.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@
 block discarded – undo
6 6
     
7 7
     // Environments to ignore errors
8 8
     'ignore_environments' => [
9
-    	'local',
10
-    	'testing',
11
-    	'development'
9
+        'local',
10
+        'testing',
11
+        'development'
12 12
     ],
13 13
 
14 14
     // API Key
Please login to merge, or discard this patch.