Skip to content

Commit c2243fc

Browse files
authored
Merge pull request #850 from ThomasLandauer/patch-12
Update Data.md: Renaming Doctrine2 -> Doctrine
2 parents 1ba0352 + 2b5c650 commit c2243fc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/Data.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -202,21 +202,21 @@ modules:
202202
### Doctrine
203203

204204
Doctrine is also a popular ORM, unlike some others it implements the DataMapper pattern and is not bound to any framework.
205-
The [Doctrine2](https://codeception.com/docs/modules/Doctrine2) module requires an `EntityManager` instance to work with.
205+
The [Doctrine](https://codeception.com/docs/modules/Doctrine) module requires an `EntityManager` instance to work with.
206206
It can be obtained from a Symfony framework or Zend Framework (configured with Doctrine):
207207

208208
```yaml
209209
modules:
210210
enabled:
211211
- Symfony
212-
- Doctrine2:
212+
- Doctrine:
213213
depends: Symfony
214214
```
215215

216216
If no framework is used with Doctrine you should provide the `connection_callback` option
217217
with a valid callback to a function which returns an `EntityManager` instance.
218218

219-
Doctrine2 also provides methods to create and check data:
219+
Doctrine also provides methods to create and check data:
220220

221221
* `haveInRepository`
222222
* `grabFromRepository`
@@ -257,10 +257,10 @@ modules:
257257
modules:
258258
enabled:
259259
- Symfony
260-
- Doctrine2:
260+
- Doctrine:
261261
depends: Symfony
262262
- DataFactory:
263-
depends: Doctrine2
263+
depends: Doctrine
264264
```
265265

266266
DataFactory provides a powerful solution for managing data in integration/functional/acceptance tests.

0 commit comments

Comments
 (0)