Passed
Branch bump-8 (d42d25)
by Ondra
02:50
created
olddoc/response_example.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,19 +34,19 @@
 block discarded – undo
34 34
 // success callbacks
35 35
 $provider
36 36
     ->addOnSuccess(
37
-        static function (ResponseInterface $response) {
37
+        static function(ResponseInterface $response) {
38 38
             // here is you code for processing response
39 39
         }
40 40
     )
41 41
     ->addOnSuccess(
42
-        static function (ResponseInterface $response) {
42
+        static function(ResponseInterface $response) {
43 43
             // here is you code for processing response
44 44
         }
45 45
     );
46 46
 
47 47
 // error callback
48 48
 $provider->addOnError(
49
-    static function (GPWebPayException $exception, ResponseInterface $response) {
49
+    static function(GPWebPayException $exception, ResponseInterface $response) {
50 50
         // here is you code for processing error
51 51
     }
52 52
 );
Please login to merge, or discard this patch.
src/stubs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
  *
11 11
  */
12 12
 
13
-declare(strict_types = 1);
13
+declare(strict_types=1);
14 14
 
15 15
 if (\PHP_VERSION_ID < 80000) {
16 16
     interface Stringable
Please login to merge, or discard this patch.