File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public function createNewClient()
57
57
$ docBlock = DocBlockGenerator::fromArray ([
58
58
'shortDescription ' => $ this ->clientClassName .' Client ' ,
59
59
'tags ' => $ methodTags ,
60
- ]);
60
+ ])-> setWordWrap ( false ) ;
61
61
$ constructorDocBlock = DocBlockGenerator::fromArray ([
62
62
'shortDescription ' => $ className .' constructor ' ,
63
63
]);
@@ -68,7 +68,7 @@ public function createNewClient()
68
68
new ParamTag ('parameters ' , 'mixed ' ),
69
69
new ReturnTag ('\CodeDredd\Soap\Client\Response|mixed ' ),
70
70
],
71
- ]);
71
+ ])-> setWordWrap ( false ) ;
72
72
$ callMethodParameters = [
73
73
'method ' ,
74
74
'parameters ' ,
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ public function createNewClientContract()
43
43
$ docBlock = DocBlockGenerator::fromArray ([
44
44
'shortDescription ' => $ this ->clientClassName .' Contract ' ,
45
45
'tags ' => $ methodTags ,
46
- ]);
46
+ ])-> setWordWrap ( false ) ;
47
47
48
48
return $ this ->codeClass ->setName ($ className )
49
49
->setDocBlock ($ docBlock );
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ public function createNewValidation(Operation $action)
70
70
$ docBlock = DocBlockGenerator::fromArray ([
71
71
'shortDescription ' => $ this ->actionName .' Validation ' ,
72
72
'longDescription ' => $ action ->getDescription (),
73
- ]);
73
+ ])-> setWordWrap ( false ) ;
74
74
$ this ->codeClass ->setName ($ className )
75
75
->setNamespaceName ($ this ->codeNamespace .'\\Validations \\' .$ this ->clientClassName )
76
76
->setDocBlock ($ docBlock )
You can’t perform that action at this time.
0 commit comments