From ead09579e3273aee4176b3b2ea1e05d8353d8a01 Mon Sep 17 00:00:00 2001 From: jpramirez Date: Thu, 10 Jun 2021 13:48:53 +0200 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d9898429..c6c2a4da 100644 --- a/README.md +++ b/README.md @@ -117,12 +117,12 @@ Scenarios should implement the `CakephpFixtureFactories\Scenario\FixtureScenario ## Querying the database -Because the fixture factories are closely related to the database, the package provide two methods to conveniently -query the database. Note that both methods will by-pass the `beforeFind` event, facilitating the inspection of your +Because the fixture factories are closely related to the database, the package provides two methods to conveniently +run queries. Both methods will by-pass the `beforeFind` event, enabling the direct inspection of your test database. #### ArticleFactory::find() -This method will return a query on the table related to the given factory. +This method will return a query on the table related to the given factory. It takes as input the same parameters as the classic table `find()` method. #### ArticleFactory::count() This method will return the number of entries in the table of the given factory.