@@ -157,7 +157,7 @@ WebDriver module returns `Facebook\WebDriver\Remote\RemoteWebElement` instances
157157PhpBrowser and Framework modules return `Symfony\Component\DomCrawler\Crawler` instances
158158
159159 * `param` $locator
160- * `return` array of interactive elements
160+ * `return array` of interactive elements
161161
162162
163163#### _getResponseContent
@@ -178,7 +178,7 @@ public function seeResponseContains($text)
178178
179179{% endhighlight %}
180180
181- * `return` string
181+ * `return string`
182182@throws ModuleException
183183
184184
@@ -229,7 +229,7 @@ To load arbitrary page for interaction, use `_loadPage` method.
229229 * `param string` $method
230230 * `param string` $uri
231231 * `param string` $content
232- * `return` string
232+ * `return string`
233233@throws ExternalUrlException
234234@see `_loadPage`
235235
@@ -413,7 +413,7 @@ $I->callArtisan('command:name', ['parameter' => 'value']);
413413{% endhighlight %}
414414Use 3rd parameter to pass in custom `OutputInterface`
415415
416- * `return` string|void
416+ * `return string|void`
417417
418418
419419#### checkOption
@@ -1063,7 +1063,7 @@ $aLinks = $I->grabMultiple('a', 'href');
10631063
10641064 * ` param ` $cssOrXpath
10651065 * ` param ` $attribute
1066- * ` return ` string[ ]
1066+ * ` return string[] `
10671067
10681068
10691069#### grabNumRecords
@@ -1087,7 +1087,7 @@ $I->grabNumRecords('App\Models\User', ['name' => 'Davert']);
10871087Grabs current page source code.
10881088
10891089@throws ModuleException if no page was opened.
1090- * `return` string Current page source code.
1090+ * `return string` Current page source code.
10911091
10921092
10931093#### grabRecord
@@ -1106,7 +1106,7 @@ $record = $I->grabRecord('App\Models\User', ['name' => 'Davert']); // returns El
11061106
11071107 * `param string` $table
11081108 * `param array` $attributes
1109- * `return` array|EloquentModel
1109+ * `return array|EloquentModel`
11101110 * `[Part]` orm
11111111
11121112
@@ -1156,7 +1156,7 @@ $value = $I->grabTextFrom('~<input value=(.*?)]~sgi'); // match with a regex
11561156
11571157 * ` param ` $field
11581158
1159- * ` return ` array|mixed|null|string
1159+ * ` return array|mixed|null|string `
11601160
11611161
11621162#### have
@@ -1302,7 +1302,7 @@ $I->haveMultiple('App\Models\User', 10, [], 'admin');
13021302
13031303@see https://laravel.com/docs/7.x/database-testing#using-factories
13041304
1305- * `return` EloquentModel|EloquentCollection
1305+ * `return EloquentModel|EloquentCollection`
13061306 * `[Part]` orm
13071307
13081308
@@ -1322,7 +1322,7 @@ $user = $I->haveRecord('App\Models\User', ['name' => 'Davert']); // returns Eloq
13221322
13231323 * `param string` $table
13241324 * `param array` $attributes
1325- * `return` EloquentModel|int
1325+ * `return EloquentModel|int`
13261326@throws RuntimeException
13271327 * `[Part]` orm
13281328
@@ -1383,7 +1383,7 @@ $I->make('App\Models\User', [], 'admin');
13831383
13841384@see https://laravel.com/docs/7.x/database-testing#using-factories
13851385
1386- * `return` EloquentCollection|EloquentModel
1386+ * `return EloquentCollection|EloquentModel`
13871387 * `[Part]` orm
13881388
13891389
@@ -1419,7 +1419,7 @@ $I->makeMultiple('App\Models\User', 10, [], 'admin');
14191419
14201420@see https://laravel.com/docs/7.x/database-testing#using-factories
14211421
1422- * `return` EloquentCollection|EloquentModel
1422+ * `return EloquentCollection|EloquentModel`
14231423 * `[Part]` orm
14241424
14251425
@@ -1603,7 +1603,6 @@ $I->seeElement(['css' => 'form input'], ['name' => 'login']);
16031603
16041604 * ` param ` $selector
16051605 * ` param array ` $attributes
1606- @return
16071606
16081607
16091608#### seeEventTriggered
0 commit comments