We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2266e2 commit 3cb9779Copy full SHA for 3cb9779
composer.json
@@ -39,7 +39,8 @@
39
},
40
"require-dev": {
41
"omnipay/tests": "^4.1",
42
- "squizlabs/php_codesniffer": "^3"
+ "squizlabs/php_codesniffer": "^3",
43
+ "phpspec/prophecy-phpunit": "^2.0"
44
45
"extra": {
46
"branch-alias": {
tests/Message/ResponseTest.php
@@ -4,9 +4,12 @@
4
5
use Omnipay\Common\Message\RequestInterface;
6
use Omnipay\Tests\TestCase;
7
+use Prophecy\PhpUnit\ProphecyTrait;
8
9
class ResponseTest extends TestCase
10
{
11
+ use ProphecyTrait;
12
+
13
public function setUp(): void
14
15
$this->getMockRequest()->shouldReceive('getTransactionId')->andReturn('123456');
0 commit comments