Skip to content

Commit

Permalink
merge to dev: apply scrutinizer
Browse files Browse the repository at this point in the history
  • Loading branch information
yansongda committed Aug 23, 2017
2 parents 4de3e18 + 5233f49 commit 962f4f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Gateways/Alipay/Alipay.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ public function __construct(array $config)
*
* @param array $config_biz [description]
*
* @return string [description]
* @return mixed [description]
*/
abstract public function pay($config_biz)
public function pay($config_biz)
{
$config_biz['product_code'] = $this->getProductCode();

Expand Down
4 changes: 2 additions & 2 deletions src/Gateways/Alipay/WapGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ protected function getProductCode()
*
* @version 2017-08-23
*
* @param [type] $config_biz [description]
* @param array $config_biz [description]
*
* @return [type] [description]
* @return string [description]
*/
public function pay(array $config_biz = [])
{
Expand Down
4 changes: 2 additions & 2 deletions src/Gateways/Alipay/WebGateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ protected function getProductCode()
*
* @version 2017-08-23
*
* @param [type] $config_biz [description]
* @param array $config_biz [description]
*
* @return [type] [description]
* @return string [description]
*/
public function pay(array $config_biz = [])
{
Expand Down
2 changes: 1 addition & 1 deletion src/Pay.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Pay
/**
* [$gateways description]
*
* @var string
* @var \Yansongda\Pay\Contracts\GatewayInterface
*/
private $gateways;

Expand Down

0 comments on commit 962f4f2

Please sign in to comment.