Omnipay\Alipay\Tests\AbstractGatewayTestCase::setUp PHP Метод

setUp() защищенный Метод

protected setUp ( )
    protected function setUp()
    {
        parent::setUp();
    }

Usage Example

Пример #1
0
 public function setUp()
 {
     parent::setUp();
     $this->gateway = new AopWapGateway($this->getHttpClient(), $this->getHttpRequest());
     $this->gateway->setAppId($this->appId);
     $this->gateway->setPrivateKey($this->appPrivateKey);
     $this->gateway->setNotifyUrl('https://www.example.com/notify');
     $this->gateway->setReturnUrl('https://www.example.com/return');
 }
All Usage Examples Of Omnipay\Alipay\Tests\AbstractGatewayTestCase::setUp
AbstractGatewayTestCase