Skip to content

Commit 3d605fd

Browse files
Added abstract notification and complete purchase requests
1 parent ea1f63b commit 3d605fd

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/**
3+
* @link https://github.com/phpviet/omnipay-onepay
4+
*
5+
* @copyright (c) PHP Viet
6+
* @license [MIT](https://opensource.org/licenses/MIT)
7+
*/
8+
9+
namespace Omnipay\OnePay\Message;
10+
11+
/**
12+
* @author Vuong Minh <[email protected]>
13+
* @since 1.0.0
14+
*/
15+
abstract class AbstractCompletePurchaseRequest extends AbstractIncomingRequest
16+
{
17+
/**
18+
* {@inheritdoc}
19+
*/
20+
protected function getIncomingParameters(): array
21+
{
22+
return $this->httpRequest->query->all();
23+
}
24+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/**
3+
* @link https://github.com/phpviet/omnipay-onepay
4+
*
5+
* @copyright (c) PHP Viet
6+
* @license [MIT](https://opensource.org/licenses/MIT)
7+
*/
8+
9+
namespace Omnipay\OnePay\Message;
10+
11+
/**
12+
* @author Vuong Minh <[email protected]>
13+
* @since 1.0.0
14+
*/
15+
abstract class AbstractNotificationRequest extends AbstractIncomingRequest
16+
{
17+
/**
18+
* {@inheritdoc}
19+
*/
20+
protected function getIncomingParameters(): array
21+
{
22+
return $this->httpRequest->query->all();
23+
}
24+
}

0 commit comments

Comments
 (0)