We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e81cf3 commit a6d9eacCopy full SHA for a6d9eac
tests/Common/GatewayFactoryTest.php
@@ -7,6 +7,9 @@
7
8
class GatewayFactoryTest extends TestCase
9
{
10
+ /** @var GatewayFactory */
11
+ protected $factory;
12
+
13
public static function setUpBeforeClass() : void
14
15
m::mock('alias:Omnipay\\SpareChange\\TestGateway');
tests/Common/ItemBagTest.php
@@ -6,6 +6,9 @@
6
class ItemBagTest extends TestCase
+ /** @var ItemBag */
+ protected $bag;
public function setUp() : void
$this->bag = new ItemBag;
tests/Common/ItemTest.php
class ItemTest extends TestCase
+ /** @var Item */
+ protected $item;
$this->item = new Item;
0 commit comments