Skip to content

Commit da2dead

Browse files
github-actions[bot]github-actions[bot]
authored andcommitted
updated
1 parent 0f131d3 commit da2dead

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

changelog.markdown

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ title: Codeception Changelog
99

1010

1111

12+
### module-doctrine2 3.0.3: 3.0.3
13+
14+
Released by [![](https://avatars.githubusercontent.com/u/395992?v=4&s=16) Naktibalda](https://github.com/Naktibalda) on 2023/04/18 19:38:46 / [Repository](https://github.com/Codeception/module-doctrine2) / [Releases](https://github.com/Codeception/module-doctrine2/releases)
15+
16+
17+
18+
* Adding recommendation for Symfony users by **[ThomasLandauer](https://github.com/ThomasLandauer)** in https://github.com/Codeception/module-doctrine2/pull/69
19+
20+
1221
### module-doctrine2 3.0.2: 3.0.2
1322

1423
Released by [![](https://avatars.githubusercontent.com/u/395992?v=4&s=16) Naktibalda](https://github.com/Naktibalda) on 2023/03/18 18:36:57 / [Repository](https://github.com/Codeception/module-doctrine2) / [Releases](https://github.com/Codeception/module-doctrine2/releases)

docs/modules/Doctrine2.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,9 @@ Performs $em->flush();
198198

199199
Selects entities from repository.
200200

201-
It builds query based on array of parameters.
201+
It builds a query based on an array of parameters.
202202
You can use entity associations to build complex queries.
203+
For Symfony users, it's recommended to [use the entity's repository instead](#Grabbing-Entities-with-Symfony)
203204

204205
Example:
205206

@@ -221,8 +222,9 @@ $users = $I->grabEntitiesFromRepository(User::class, ['name' => 'davert']);
221222

222223
Selects a single entity from repository.
223224

224-
It builds query based on array of parameters.
225+
It builds a query based on an array of parameters.
225226
You can use entity associations to build complex queries.
227+
For Symfony users, it's recommended to [use the entity's repository instead](#Grabbing-Entities-with-Symfony)
226228

227229
Example:
228230

@@ -243,8 +245,9 @@ $user = $I->grabEntityFromRepository(User::class, ['id' => '1234']);
243245

244246
Selects field value from repository.
245247

246-
It builds query based on array of parameters.
248+
It builds a query based on an array of parameters.
247249
You can use entity associations to build complex queries.
250+
For Symfony users, it's recommended to [use the entity's repository instead](#Grabbing-Entities-with-Symfony)
248251

249252
Example:
250253

0 commit comments

Comments
 (0)