Skip to content

Commit bed4de2

Browse files
authored
Fix inconsistencies (#230)
1 parent 0ae5e40 commit bed4de2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A Codeception module for Symfony framework.
99

1010
## Requirements
1111

12-
* `Symfony` `5.4.x`, `6.4.x`, `7.3.x` or higher, as per the [Symfony supported versions](https://symfony.com/releases).
12+
* `Symfony` `5.4.x`, `6.4.x`, `7.4.x` or `8.0.x`, as per the [Symfony supported versions](https://symfony.com/releases).
1313
* `PHP 8.2` or higher.
1414

1515
## Installation

src/Codeception/Module/Symfony.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
*
8181
* ## Config
8282
*
83-
* ### Symfony 5.4 or higher
83+
* ### Symfony 5.4, 6.4, 7.4 or 8.0
8484
*
8585
* * `app_path`: 'src' - Specify custom path to your app dir, where the kernel interface is located.
8686
* * `environment`: 'local' - Environment used for load kernel
@@ -91,7 +91,7 @@
9191
* * `rebootable_client`: 'true' - Reboot client's kernel before each request
9292
* * `guard`: 'false' - Enable custom authentication system with guard (only for Symfony 5.4)
9393
* * `bootstrap`: 'false' - Enable the test environment setup with the tests/bootstrap.php file if it exists or with Symfony DotEnv otherwise. If false, it does nothing.
94-
* * `authenticator`: 'false' - Reboot client's kernel before each request (only for Symfony 6.0 or higher)
94+
* * `authenticator`: 'false' - Enable custom authentication system with authenticator (only for Symfony 6.0 or higher)
9595
*
9696
* #### Sample `Functional.suite.yml`
9797
*
@@ -181,7 +181,7 @@ class Symfony extends Framework implements DoctrineProvider, PartedModule
181181
* }
182182
*/
183183
public array $config = [
184-
'app_path' => 'app',
184+
'app_path' => 'src',
185185
'kernel_class' => 'App\\Kernel',
186186
'environment' => 'test',
187187
'debug' => true,

src/Codeception/Module/Symfony/NotifierAssertionsTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function assertNotificationCount(int $count, ?string $transportName = nul
3838
* ```php
3939
* <?php
4040
* $event = $I->getNotifierEvent();
41-
* $I->asserNotificationIsNotQueued($event);
41+
* $I->assertNotificationIsNotQueued($event);
4242
* ```
4343
*/
4444
public function assertNotificationIsNotQueued(MessageEvent $event, string $message = ''): void

0 commit comments

Comments
 (0)