Skip to content

Commit 0428eef

Browse files
committed
style ci
1 parent 5f299ea commit 0428eef

File tree

8 files changed

+0
-21
lines changed

8 files changed

+0
-21
lines changed

src/Encryption.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public function setKey($key)
3535
}
3636

3737
/**
38-
* @param array $data
3938
* @return string
4039
*/
4140
public function encrypt(array $data)

src/Gateway.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public function getDefaultParameters()
4343
}
4444

4545
/**
46-
* @param array $options
4746
* @return RequestInterface
4847
*/
4948
public function purchase(array $options = [])
@@ -52,7 +51,6 @@ public function purchase(array $options = [])
5251
}
5352

5453
/**
55-
* @param array $options
5654
* @return RequestInterface
5755
*/
5856
public function completePurchase(array $options = [])
@@ -61,7 +59,6 @@ public function completePurchase(array $options = [])
6159
}
6260

6361
/**
64-
* @param array $options
6562
* @return RequestInterface
6663
*/
6764
public function acceptNotification(array $options = [])
@@ -70,7 +67,6 @@ public function acceptNotification(array $options = [])
7067
}
7168

7269
/**
73-
* @param array $options
7470
* @return RequestInterface
7571
*/
7672
public function fetchTransaction(array $options = [])
@@ -79,7 +75,6 @@ public function fetchTransaction(array $options = [])
7975
}
8076

8177
/**
82-
* @param array $options
8378
* @return RequestInterface
8479
*/
8580
public function refund(array $options = [])

src/Message/AbstractRequest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ protected function getEndpoint()
3434
}
3535

3636
/**
37-
* @param Encryption $encryption
38-
* @param array $data
3937
* @return array
4038
*/
4139
abstract protected function createBody(Encryption $encryption, array $data);

src/Message/FetchTransactionRequest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ protected function createBody(Encryption $encryption, array $data)
3131
}
3232

3333
/**
34-
* @param $data
3534
* @return FetchTransactionResponse
3635
*/
3736
protected function createResponse($data)

src/Message/PurchaseRequest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,6 @@ public function getData()
334334
}
335335

336336
/**
337-
* @param Encryption $encryption
338-
* @param array $data
339337
* @return array
340338
*/
341339
protected function createBody(Encryption $encryption, array $data)
@@ -351,7 +349,6 @@ protected function createBody(Encryption $encryption, array $data)
351349
}
352350

353351
/**
354-
* @param $data
355352
* @return PurchaseResponse
356353
*/
357354
protected function createResponse($data)
@@ -360,7 +357,6 @@ protected function createResponse($data)
360357
}
361358

362359
/**
363-
* @param array $data
364360
* @return array
365361
*/
366362
private function appendItems(array $data)
@@ -428,7 +424,6 @@ private function appendUserData(array $data)
428424
}
429425

430426
/**
431-
* @param array $data
432427
* @return array
433428
*/
434429
private function filter(array $data)

src/Traits/HasAgent.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ public function getAgentChargeFeeType()
4444
* 經銷商發動交易才能使用
4545
* 經銷商收取費用,限用金額,不能使用%.
4646
*
47-
* @param $value
4847
* @return PurchaseRequest
4948
*/
5049
public function setAgentChargeFee($value)

src/User.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,13 @@ class User
1212

1313
/**
1414
* Voucher constructor.
15-
*
16-
* @param array|null $parameters
1715
*/
1816
public function __construct(array $parameters = null)
1917
{
2018
$this->initialize($parameters);
2119
}
2220

2321
/**
24-
* @param array|null $parameters
2522
* @return $this
2623
*/
2724
public function initialize(array $parameters = null)

src/Voucher.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,13 @@ class Voucher
1212

1313
/**
1414
* Voucher constructor.
15-
*
16-
* @param array|null $parameters
1715
*/
1816
public function __construct(array $parameters = null)
1917
{
2018
$this->initialize($parameters);
2119
}
2220

2321
/**
24-
* @param array|null $parameters
2522
* @return $this
2623
*/
2724
public function initialize(array $parameters = null)

0 commit comments

Comments
 (0)