Skip to content

Commit 3118a7e

Browse files
authored
fix(v1): wrond comment in code generation (#20)
1 parent 51dbba2 commit 3118a7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Code/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function createNewClient()
5151

5252
return new GenericTag(
5353
'method',
54-
'CodeDredd\\Soap\\Client\\Response '.$action->getName().$params
54+
'\\CodeDredd\\Soap\\Client\\Response '.$action->getName().$params
5555
);
5656
})->values()->toArray();
5757
$docBlock = DocBlockGenerator::fromArray([

src/Code/ClientContract.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function createNewClientContract()
3737

3838
return new GenericTag(
3939
'method',
40-
'CodeDredd\\Soap\\Client\\Response '.$action->getName().$params.$action->getDescription()
40+
'\\CodeDredd\\Soap\\Client\\Response '.$action->getName().$params.$action->getDescription()
4141
);
4242
})->values()->toArray();
4343
$docBlock = DocBlockGenerator::fromArray([

0 commit comments

Comments
 (0)