Skip to content

Commit

Permalink
Merge pull request #69 from ThomasLandauer/patch-1
Browse files Browse the repository at this point in the history
Adding recommendation for Symfony users
  • Loading branch information
Naktibalda committed Apr 18, 2023
2 parents 18dd720 + dcfb3d4 commit 3ba1c67
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Codeception/Module/Doctrine2.php
Expand Up @@ -881,8 +881,9 @@ protected function proceedSeeInRepository(string $entity, array $params = []): a

/**
* Selects field value from repository.
* It builds query based on array of parameters.
* It builds a query based on an array of parameters.
* You can use entity associations to build complex queries.
* For Symfony users, it's recommended to [use the entity's repository instead](#Grabbing-Entities-with-Symfony)
*
* Example:
*
Expand All @@ -909,8 +910,9 @@ public function grabFromRepository(string $entity, string $field, array $params

/**
* Selects entities from repository.
* It builds query based on array of parameters.
* It builds a query based on an array of parameters.
* You can use entity associations to build complex queries.
* For Symfony users, it's recommended to [use the entity's repository instead](#Grabbing-Entities-with-Symfony)
*
* Example:
*
Expand Down Expand Up @@ -938,8 +940,9 @@ public function grabEntitiesFromRepository(string $entity, array $params = []):

/**
* Selects a single entity from repository.
* It builds query based on array of parameters.
* It builds a query based on an array of parameters.
* You can use entity associations to build complex queries.
* For Symfony users, it's recommended to [use the entity's repository instead](#Grabbing-Entities-with-Symfony)
*
* Example:
*
Expand Down

0 comments on commit 3ba1c67

Please sign in to comment.