Skip to content

Commit f756baf

Browse files
committed
auto updated documentation
1 parent a3f8452 commit f756baf

20 files changed

+182
-182
lines changed

docs/modules/Asserts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@ Checks that actual is greater or equal than expected
8585

8686
#### assertGreaterThen
8787

88-
@deprecated
88+
* deprecated
8989

9090

9191
#### assertGreaterThenOrEqual
9292

93-
@deprecated
93+
* deprecated
9494

9595

9696
#### assertLessThan

docs/modules/Db.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ $mail = $I->grabFromDatabase('users', 'email', array('name' => 'Davert'));
140140

141141
{% endhighlight %}
142142

143-
@version 1.1
143+
* Available since 1.1
144144

145145
* `param` $table
146146
* `param` $column

docs/modules/Dbh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ $mail = $I->grabFromDatabase('users', 'email', array('name' => 'Davert'));
9999

100100
{% endhighlight %}
101101

102-
@version 1.1
102+
* Available since 1.1
103103

104104
* `param` $table
105105
* `param` $column

docs/modules/Doctrine2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ $email = $I->grabFromRepository('User', 'email', array('name' => 'davert'));
9595

9696
{% endhighlight %}
9797

98-
@version 1.1
98+
* Available since 1.1
9999
* `param` $entity
100100
* `param` $field
101101
* `param array` $params

docs/modules/Facebook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Get facebook test user be created.
136136

137137
Get facebook test user be logged in on facebook.
138138

139-
139+
ModuleConfigException
140140

141141

142142
#### postToFacebookAsTestUser

docs/modules/Laravel4.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ To load arbitrary page for interaction, use `_loadPage` method.
136136
* `param array` $files
137137
* `param array` $server
138138
* `param null` $content
139-
@return mixed|Crawler
140-
@throws ExternalUrlException
141-
@see `_loadPage`
139+
* `return` mixed|Crawler
140+
ExternalUrlException
141+
* see `_loadPage`
142142

143143

144144
#### _savePageSource
@@ -170,8 +170,8 @@ Takes either `UserInterface` instance or array of credentials.
170170

171171
* `param` \Illuminate\Auth\UserInterface|array $user
172172
* `param` string $driver
173-
@return void
174-
* Part: ** framework**
173+
* `return` void
174+
* `[Part]` framework
175175

176176

177177
#### amOnAction
@@ -270,7 +270,7 @@ $I->checkOption('#agree');
270270

271271
Make sure the Laravel start file exists.
272272

273-
273+
ModuleConfig
274274

275275

276276
#### click
@@ -554,8 +554,8 @@ $I->dontSeeRecord('users', array('name' => 'davert'));
554554

555555
* `param` $tableName
556556
* `param array` $attributes
557-
@part orm
558-
* Part: ** framework**
557+
* `[Part]` orm
558+
* `[Part]` framework
559559

560560

561561
#### fillField
@@ -674,8 +674,8 @@ $category = $I->grabRecord('users', array('name' => 'davert'));
674674

675675
* `param` $tableName
676676
* `param array` $attributes
677-
@part ORM
678-
* Part: ** framework**
677+
* `[Part]` ORM
678+
* `[Part]` framework
679679

680680

681681
#### grabService
@@ -702,7 +702,7 @@ $service = $I->grabService('foo');
702702
{% endhighlight %}
703703

704704
* `param` string $class
705-
* Part: ** framework**
705+
* `[Part]` framework
706706

707707

708708
#### grabTextFrom
@@ -755,14 +755,14 @@ $user_id = $I->haveRecord('users', array('name' => 'Davert'));
755755

756756
* `param` $tableName
757757
* `param array` $attributes
758-
@part orm
759-
* Part: ** framework**
758+
* `[Part]` orm
759+
* `[Part]` framework
760760

761761

762762
#### logout
763763

764764
Logs user out
765-
* Part: ** framework**
765+
* `[Part]` framework
766766

767767

768768
#### resetCookie
@@ -797,7 +797,7 @@ $I->see('Sign Up','//body/h1'); // with XPath
797797
#### seeAuthentication
798798

799799
Checks that user is authenticated
800-
* Part: ** framework**
800+
* `[Part]` framework
801801

802802

803803
#### seeCheckboxIsChecked
@@ -919,7 +919,7 @@ $I->seeElement(['css' => 'form input'], ['name' => 'login']);
919919

920920
* `param` $selector
921921
* `param array` $attributes
922-
@return
922+
* return
923923

924924

925925
#### seeFormErrorMessage
@@ -1195,8 +1195,8 @@ $I->seeRecord('users', array('name' => 'davert'));
11951195

11961196
* `param` $tableName
11971197
* `param array` $attributes
1198-
@part orm
1199-
* Part: ** framework**
1198+
* `[Part]` orm
1199+
* `[Part]` framework
12001200

12011201

12021202
#### seeResponseCodeIs
@@ -1226,7 +1226,7 @@ $I->seeSessionErrorMessage(array('username'=>'Invalid Username'));
12261226

12271227
{% endhighlight %}
12281228
* `param array` $bindings
1229-
@deprecated
1229+
* deprecated
12301230

12311231

12321232
#### seeSessionHasErrors
@@ -1241,8 +1241,8 @@ $I->seeSessionHasErrors();
12411241

12421242
{% endhighlight %}
12431243

1244-
@return bool
1245-
@deprecated
1244+
* `return` bool
1245+
* deprecated
12461246

12471247

12481248
#### seeSessionHasValues

docs/modules/Laravel5.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ To load arbitrary page for interaction, use `_loadPage` method.
136136
* `param array` $files
137137
* `param array` $server
138138
* `param null` $content
139-
@return mixed|Crawler
140-
@throws ExternalUrlException
141-
@see `_loadPage`
139+
* `return` mixed|Crawler
140+
ExternalUrlException
141+
* see `_loadPage`
142142

143143

144144
#### _savePageSource
@@ -593,7 +593,7 @@ $I->dontSeeRecord('users', array('name' => 'davert'));
593593

594594
* `param` $tableName
595595
* `param array` $attributes
596-
* Part: ** orm**
596+
* `[Part]` orm
597597

598598

599599
#### enableEvents
@@ -754,7 +754,7 @@ $category = $I->grabRecord('users', array('name' => 'davert'));
754754

755755
* `param` $tableName
756756
* `param array` $attributes
757-
* Part: ** orm**
757+
* `[Part]` orm
758758

759759

760760
#### grabService
@@ -823,7 +823,7 @@ $user_id = $I->haveRecord('users', array('name' => 'Davert'));
823823

824824
* `param` $tableName
825825
* `param array` $attributes
826-
* Part: ** orm**
826+
* `[Part]` orm
827827

828828

829829
#### logout
@@ -984,7 +984,7 @@ $I->seeElement(['css' => 'form input'], ['name' => 'login']);
984984

985985
* `param` $selector
986986
* `param array` $attributes
987-
@return
987+
* return
988988

989989

990990
#### seeFormErrorMessage
@@ -1259,7 +1259,7 @@ $I->seeRecord('users', array('name' => 'davert'));
12591259

12601260
* `param` $tableName
12611261
* `param array` $attributes
1262-
* Part: ** orm**
1262+
* `[Part]` orm
12631263

12641264

12651265
#### seeResponseCodeIs

docs/modules/Lumen.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ To load arbitrary page for interaction, use `_loadPage` method.
122122
* `param array` $files
123123
* `param array` $server
124124
* `param null` $content
125-
@return mixed|Crawler
126-
@throws ExternalUrlException
127-
@see `_loadPage`
125+
* `return` mixed|Crawler
126+
ExternalUrlException
127+
* see `_loadPage`
128128

129129

130130
#### _savePageSource
@@ -821,7 +821,7 @@ $I->seeElement(['css' => 'form input'], ['name' => 'login']);
821821

822822
* `param` $selector
823823
* `param array` $attributes
824-
@return
824+
* return
825825

826826

827827
#### seeInCurrentUrl

docs/modules/Phalcon1.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ To load arbitrary page for interaction, use `_loadPage` method.
151151
* `param array` $files
152152
* `param array` $server
153153
* `param null` $content
154-
@return mixed|Crawler
155-
@throws ExternalUrlException
156-
@see `_loadPage`
154+
* `return` mixed|Crawler
155+
ExternalUrlException
156+
* see `_loadPage`
157157

158158

159159
#### _savePageSource
@@ -615,7 +615,7 @@ $category = $I->grabRecord('Phosphorum\Models\Categories', ['name' => 'Testing']
615615

616616
* `param string` $model Model name
617617
* `param array` $attributes Model attributes
618-
* Part: ** orm**
618+
* `[Part]` orm
619619

620620

621621
#### grabServiceFromDi
@@ -677,7 +677,7 @@ $I->haveRecord('Phosphorum\Models\Categories', ['name' => 'Testing']');
677677

678678
* `param string` $model Model name
679679
* `param array` $attributes Model attributes
680-
* Part: ** orm**
680+
* `[Part]` orm
681681

682682

683683
#### haveServiceInDi
@@ -817,7 +817,7 @@ $I->seeElement(['css' => 'form input'], ['name' => 'login']);
817817

818818
* `param` $selector
819819
* `param array` $attributes
820-
@return
820+
* return
821821

822822

823823
#### seeInCurrentUrl

docs/modules/Phalcon2.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ To load arbitrary page for interaction, use `_loadPage` method.
152152
* `param array` $files
153153
* `param array` $server
154154
* `param null` $content
155-
@return mixed|Crawler
156-
@throws ExternalUrlException
157-
@see `_loadPage`
155+
* `return` mixed|Crawler
156+
ExternalUrlException
157+
* see `_loadPage`
158158

159159

160160
#### _savePageSource
@@ -616,7 +616,7 @@ $category = $I->grabRecord('Phosphorum\Models\Categories', ['name' => 'Testing']
616616

617617
* `param string` $model Model name
618618
* `param array` $attributes Model attributes
619-
* Part: ** orm**
619+
* `[Part]` orm
620620

621621

622622
#### grabServiceFromDi
@@ -678,7 +678,7 @@ $I->haveRecord('Phosphorum\Models\Categories', ['name' => 'Testing']');
678678

679679
* `param string` $model Model name
680680
* `param array` $attributes Model attributes
681-
* Part: ** orm**
681+
* `[Part]` orm
682682

683683

684684
#### haveServiceInDi
@@ -818,7 +818,7 @@ $I->seeElement(['css' => 'form input'], ['name' => 'login']);
818818

819819
* `param` $selector
820820
* `param array` $attributes
821-
@return
821+
* return
822822

823823

824824
#### seeInCurrentUrl

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy