Completed
Push — master ( 148a5e...0b6283 )
by methylbro
01:51
created
examples/account-update.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
 use Mediapart\LaPresseLibre\Operation\AccountUpdate;
12 12
 
13
-$handle(AccountUpdate::class, function ($data, $is_testing) use ($public_key) {
13
+$handle(AccountUpdate::class, function($data, $is_testing) use ($public_key) {
14 14
     return [
15 15
         'IsValid' => true,
16 16
         'PartenaireID' => $public_key,
Please login to merge, or discard this patch.
examples/verification.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
 use Mediapart\LaPresseLibre\Operation\Verification;                                                                         
12 12
 
13
-$handle(Verification::class, function ($data, $is_testing) use ($public_key) {
13
+$handle(Verification::class, function($data, $is_testing) use ($public_key) {
14 14
     $now = new DateTime('next year');
15 15
 
16 16
     return [
Please login to merge, or discard this patch.
examples/account-creation.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
 use Mediapart\LaPresseLibre\Operation\AccountCreation;
12 12
 
13
-$handle(AccountCreation::class, function ($data, $is_testing) use ($public_key) {
13
+$handle(AccountCreation::class, function($data, $is_testing) use ($public_key) {
14 14
     return [
15 15
         'IsValid' => true,
16 16
         'PartenaireID' => $public_key,
Please login to merge, or discard this patch.