Skip to content

Commit f91a55e

Browse files
committed
Updated docs and changelog
1 parent 216a600 commit f91a55e

4 files changed

Lines changed: 298 additions & 57 deletions

File tree

changelog.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ title: Codeception Changelog
88
# Changelog
99

1010

11+
#### 4.1.13
12+
13+
* Gherkin: Fixed loading methods from namespaced helper classes [#6057](https://github.com/Codeception/Codeception/issues/6057)
14+
1115
#### 4.1.12
1216

1317
* Dependency Injection: Fix PHP types being treated as classes [#6031](https://github.com/Codeception/Codeception/issues/6031) by **[cs278](https://github.com/cs278)**

docs/modules/Db.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,22 @@ Will generate:
257257

258258
SELECT COUNT(*) FROM `users` WHERE `name` = 'Davert' AND `email` LIKE 'davert%'
259259

260+
{% endhighlight %}
261+
Null comparisons are also available, as shown here:
262+
263+
{% highlight php %}
264+
265+
<?php
266+
$I->seeInDatabase('users', ['name' => null, 'email !=' => null]);
267+
268+
269+
{% endhighlight %}
270+
Will generate:
271+
272+
{% highlight sql %}
273+
274+
SELECT COUNT(*) FROM `users` WHERE `name` IS NULL AND `email` IS NOT NULL
275+
260276
{% endhighlight %}
261277
### Public Properties
262278
* dbh - contains the PDO connection

docs/modules/Doctrine2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ modules:
7979
You cannot use `cleanup: true` in an acceptance test, since Codeception and your app (i.e. browser) are using two
8080
different connections to the database, so Codeception can't wrap changes made by the app into a transaction.
8181

82-
Change purge mode doctrine fixtures:
82+
Change purge mode of doctrine fixtures:
8383
{% highlight yaml %}
8484

8585
modules:

0 commit comments

Comments
 (0)