Completed
Push — master ( 963443...9b6e1d )
by Thomas Mauro
04:42 queued 03:09
created
src/SendCallback/CallbackInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Facile\SentryModule\SendCallback;
6 6
 
Please login to merge, or discard this patch.
src/Listener/ErrorHandlerListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Facile\SentryModule\Listener;
6 6
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     public function handleError(MvcEvent $event)
75 75
     {
76 76
         $exception = $event->getParam('exception');
77
-        if (! $exception instanceof \Throwable) {
77
+        if (!$exception instanceof \Throwable) {
78 78
             return;
79 79
         }
80 80
 
Please login to merge, or discard this patch.
src/Exception/InvalidArgumentException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Facile\SentryModule\Exception;
6 6
 
Please login to merge, or discard this patch.
src/SendCallback/CallbackChain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Facile\SentryModule\SendCallback;
6 6
 
Please login to merge, or discard this patch.
src/Listener/ErrorHandlerListenerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Facile\SentryModule\Listener;
5 5
 
Please login to merge, or discard this patch.
src/Options/StackTraceOptionsInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Facile\SentryModule\Options;
6 6
 
Please login to merge, or discard this patch.
src/Options/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Facile\SentryModule\Options;
6 6
 
Please login to merge, or discard this patch.
src/Options/ConfigurationInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Facile\SentryModule\Options;
6 6
 
Please login to merge, or discard this patch.
src/Options/ErrorHandlerOptions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Facile\SentryModule\Options;
5 5
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function setErrorTypes($errorTypes)
58 58
     {
59
-        if (null !== $errorTypes && ! is_int($errorTypes)) {
59
+        if (null !== $errorTypes && !is_int($errorTypes)) {
60 60
             throw new InvalidArgumentException('Invalid errorTypes value');
61 61
         }
62 62
 
Please login to merge, or discard this patch.