Skip to content

Commit daeb6c6

Browse files
islamdarwishislamsys
authored andcommitted
Fix psr2 guidelines
1 parent f12e659 commit daeb6c6

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

Diff for: phpunit.xml.dist~

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit backupGlobals="false"
3+
backupStaticAttributes="false"
4+
bootstrap="vendor/autoload.php"
5+
colors="true"
6+
convertErrorsToExceptions="true"
7+
convertNoticesToExceptions="true"
8+
convertWarningsToExceptions="true"
9+
processIsolation="false"
10+
stopOnFailure="false"
11+
syntaxCheck="false">
12+
<testsuites>
13+
<testsuite name="Omnipay Test Suite">
14+
<directory>./tests/</directory>
15+
</testsuite>
16+
</testsuites>
17+
<listeners>
18+
<listener class="Mockery\Adapter\Phpunit\TestListener" file="vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php" />
19+
</listeners>
20+
<filter>
21+
<whitelist>
22+
<directory>./src</directory>
23+
</whitelist>
24+
</filter>
25+
</phpunit>

Diff for: src/Message/RestListPlanRequest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* This is from the PayPal web site:
4747
*
4848
* <code>
49-
* curl -v -X GET https://api.sandbox.paypal.com/v1/payments/billing-plans?page_size=3&status=ACTIVE&page_size=2&page=1&total_required=yes \
49+
* curl -v -X GET https://api.sandbox.paypal.com/v1/payments/billing-plans?page_size=3&status=ACTIVE&page=1\
5050
* -H "Content-Type:application/json" \
5151
* -H "Authorization: Bearer Access-Token"
5252
* </code>
@@ -80,7 +80,7 @@
8080
* "id": "P-1TV69435N82273154UPWDU4I",
8181
* "state": "ACTIVE",
8282
* "name": "Plan with Regular Payment Definition",
83-
* "description": "Plan with one regular payment definition, minimal merchant preferences, and no shipping fees or tax.",
83+
* "description": "Plan with one regular payment definition, minimal merchant preferences, and no shipping fee",
8484
* "type": "INFINITE",
8585
* "create_time": "2017-08-22T04:41:55.623Z",
8686
* "update_time": "2017-08-22T04:41:56.055Z",

0 commit comments

Comments
 (0)