File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -65,8 +65,7 @@ public function execute($request)
65
65
*/
66
66
public function supports ($ request )
67
67
{
68
- return
69
- $ request instanceof GetStatusInterface &&
68
+ return $ request instanceof GetStatusInterface &&
70
69
($ request ->getModel () instanceof Payment || $ request ->getModel () instanceof \ArrayAccess)
71
70
;
72
71
}
Original file line number Diff line number Diff line change @@ -34,8 +34,7 @@ public function execute($request)
34
34
*/
35
35
public function supports ($ request )
36
36
{
37
- return
38
- $ request instanceof Sync &&
37
+ return $ request instanceof Sync &&
39
38
$ request ->getModel () instanceof PaypalPayment
40
39
;
41
40
}
Original file line number Diff line number Diff line change 3
3
ini_set ('display_errors ' , 1 );
4
4
error_reporting (-1 );
5
5
6
- if (!$ loader = @include __DIR__ . '/../vendor/autoload.php ' ) {
6
+ if (! $ loader = @include __DIR__ . '/../vendor/autoload.php ' ) {
7
7
echo <<<EOM
8
8
You must set up the project dependencies by running the following commands:
9
9
You can’t perform that action at this time.
0 commit comments