Skip to content

Commit 22c0abe

Browse files
author
Hannes Giesenow
committed
Fix deprecation warning
1 parent 0fe4977 commit 22c0abe

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ workflows:
7272
name: 'build/php-<< matrix.php_version >>/sf-<< matrix.symfony_version >>/monolog-<< matrix.monolog_version >>'
7373
matrix:
7474
parameters: &params
75-
php_version: ['8.1','8.2']
76-
symfony_version: ['5.4','6.2']
75+
php_version: ['8.1','8.2','8.3','8.4']
76+
symfony_version: ['5.4','6.4']
7777
monolog_version: ['2.6']
7878
- phpunit:
7979
name: 'phpunit/php-<< matrix.php_version >>/sf-<< matrix.symfony_version >>/monolog-<< matrix.monolog_version >>'

doc/changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v1.5.8
4+
* Fix: Deprecation warning for implicit nullable parameter.
5+
36
## v1.5.7
47
* Feature/Fix: Support json arrays in AbstractDatabaseContext
58

src/Context/FormContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public function theFormContainsASelect(TableNode $attribs): void
208208

209209
#[Then('select :select contains option')]
210210
#[Then('select :select contains option :label')]
211-
public function selectContainsOption(string $select, string $label = null, ?TableNode $tableNode = null): void
211+
public function selectContainsOption(string $select, ?string $label = null, ?TableNode $tableNode = null): void
212212
{
213213
$crawler = $this->getLastFormCrawler();
214214
if (null !== $label) {

0 commit comments

Comments
 (0)