Passed
Branch master (148a5e)
by methylbro
02:41
created
Category
exemples/account-update.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
 try {
26 26
     $transaction = new Transaction($identity, $encryption, $request);
27
-    $account_always_updated = function ($data, $is_testing) use ($public_key) {
27
+    $account_always_updated = function($data, $is_testing) use ($public_key) {
28 28
         return [];
29 29
     };
30 30
     $account_update = Endpoint::answer(AccountUpdate::class, $account_always_updated);
Please login to merge, or discard this patch.
exemples/verification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
 try {
27 27
     $transaction = new Transaction($identity, $encryption, $request);
28
-    $account_always_exists = function ($data, $is_testing) use ($public_key) {
28
+    $account_always_exists = function($data, $is_testing) use ($public_key) {
29 29
         $now = new DateTime('next year');
30 30
 
31 31
         return [
Please login to merge, or discard this patch.
exemples/account-creation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
 try {
26 26
     $transaction = new Transaction($identity, $encryption, $request);
27
-    $account_always_created = function ($data, $is_testing) use ($public_key) {
27
+    $account_always_created = function($data, $is_testing) use ($public_key) {
28 28
         return [
29 29
             'IsValid' => true,
30 30
             'PartenaireID' => $public_key,
Please login to merge, or discard this patch.