Skip to content

Commit 08789b5

Browse files
authored
Merge pull request #2 from niden/main
minor fixes in documentation
2 parents 2315b34 + 3bc4dfa commit 08789b5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

documentation.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Phalcon
22

33

4-
This module provides integration with [Phalcon framework](http://www.phalcon.io/) (4.x).
4+
This module provides integration with [Phalcon framework](http://www.phalcon.io/) (5.x).
55
Please try it and leave your feedback.
66

77
## Demo Project
@@ -10,7 +10,7 @@ Please try it and leave your feedback.
1010

1111
## Status
1212

13-
* Maintainer: **Ruud Boon**
13+
* Maintainer: **Nikolaos Dimopoulos**
1414
* Stability: **stable**
1515
1616

@@ -32,11 +32,11 @@ The application bootstrap file must return Application object but not call its h
3232

3333
## Parts
3434

35-
By default all available methods are loaded, but you can specify parts to select only needed
35+
By default, all available methods are loaded, but you can specify parts to select only needed
3636
actions and avoid conflicts.
3737

3838
* `orm` - include only `haveRecord/grabRecord/seeRecord/dontSeeRecord` actions.
39-
* `services` - allows to use `grabServiceFromContainer` and `addServiceToContainer`.
39+
* `services` - allows using `grabServiceFromContainer` and `addServiceToContainer`.
4040

4141
Usage example:
4242

@@ -122,7 +122,7 @@ public function seeResponseContains($text)
122122
*hidden API method, expected to be used from Helper classes*
123123

124124
Opens a page with arbitrary request parameters.
125-
Useful for testing multi-step forms on a specific step.
125+
Useful for testing multistep forms on a specific step.
126126

127127
```php
128128
<?php
@@ -188,7 +188,7 @@ $this->getModule('Phalcon')->_savePageSource(codecept_output_dir().'page.html');
188188
### addServiceToContainer
189189

190190
Registers a service in the services container and resolve it. This record will be erased after the test.
191-
Recommended to use for unit testing.
191+
Recommended using for unit testing.
192192

193193
``` php
194194
<?php
@@ -486,7 +486,7 @@ $I->dontSeeInFormFields('.form-class', [
486486
?>
487487
```
488488

489-
Additionally, checkbox values can be checked with a boolean.
489+
Additionally, checkbox values can be checked with a boolean value.
490490

491491
``` php
492492
<?php
@@ -700,7 +700,7 @@ $category = $I->grabRecord('App\Models\Categories', ['name' => 'Testing']);
700700
### grabServiceFromContainer
701701

702702
Resolves the service based on its configuration from Phalcon's DI container
703-
Recommended to use for unit testing.
703+
Recommended using for unit testing.
704704

705705
* `param string` $service Service name
706706
* `param array` $parameters Parameters [Optional]
@@ -1531,4 +1531,4 @@ $I->uncheckOption('#notify');
15311531

15321532
* `param` $option
15331533

1534-
<p>&nbsp;</p><div class="alert alert-warning">Module reference is taken from the source code. <a href="https://github.com/Codeception/module-phalcon/tree/master/src/Codeception/Module/Phalcon.php">Help us to improve documentation. Edit module reference</a></div>
1534+
<p>&nbsp;</p><div class="alert alert-warning">Module reference is taken from the source code. <a href="https://github.com/Codeception/module-phalcon5/tree/main/src/Codeception/Module/Phalcon.php">Help us to improve documentation. Edit module reference</a></div>

0 commit comments

Comments
 (0)