Skip to content

Commit 60d89fc

Browse files
developedsoftwareLuke English
and
Luke English
authored
Make template compatible with PHP 8.1 and Codeception 5 (#259)
Co-authored-by: Luke English <[email protected]>
1 parent 0f42978 commit 60d89fc

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- "7.3"
2929
- "7.4"
3030
- "8.0"
31+
- "8.1"
3132

3233
steps:
3334
- name: Checkout

tests/functional.suite.yml

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ modules:
1111
enabled:
1212
- Filesystem
1313
- Yii2
14+
- Asserts

tests/functional/ContactFormCest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class ContactFormCest
44
{
55
public function _before(\FunctionalTester $I)
66
{
7-
$I->amOnPage(['site/contact']);
7+
$I->amOnRoute('site/contact');
88
}
99

1010
public function openContactPage(\FunctionalTester $I)

0 commit comments

Comments
 (0)