Skip to content

Commit e839f18

Browse files
committed
fix doc block
1 parent cfa98e1 commit e839f18

6 files changed

+18
-1
lines changed

src/Filesystem/Workspace.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private function make(string $directory): void
123123
/**
124124
* Returns filename
125125
*
126-
* @param RecordDecision $record
126+
* @param DecisionRecord $record
127127
*
128128
* @return string The filename
129129
*/

tests/Command/MakeDecisionCommandTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
class MakeDecisionCommandTest extends TestCase
1212
{
13+
/**
14+
* @var MakeDecisionCommand
15+
*/
1316
private $command;
1417

1518
public function setUp()

tests/Command/WorkspaceCountCommandTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
class WorkspaceCountCommandTest extends TestCase
1212
{
13+
/**
14+
* @var WorkspaceCountCommand
15+
*/
1316
private $command;
1417

1518
public function setUp()

tests/Command/WorkspaceListCommandTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
class WorkspaceListCommandTest extends TestCase
1212
{
13+
/**
14+
* @var WorkspaceListCommand
15+
*/
1316
private $command;
1417

1518
public function setUp()

tests/Domain/DecisionRecordTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22

33
namespace ADR\Domain;
44

5+
use PHPUnit\Framework\MockObject\MockObject;
56
use PHPUnit\Framework\TestCase;
67

78
class DecisionRecordTest extends TestCase
89
{
10+
/**
11+
* @var DecisionContent|MockObject
12+
*/
913
private $content;
1014

1115
public function setUp()

tests/Domain/SequenceTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22

33
namespace ADR\Domain;
44

5+
use PHPUnit\Framework\MockObject\MockObject;
56
use PHPUnit\Framework\TestCase;
67
use ADR\Filesystem\Workspace;
78
use LogicException;
89

910
class SequenceTest extends TestCase
1011
{
12+
/**
13+
* @var Workspace|MockObject
14+
*/
1115
private $workspace;
1216

1317
public function setUp()

0 commit comments

Comments
 (0)