Some checks failed
Build / PHP 8.3 + Symfony 7.4.* (pull_request) Has been cancelled
Build / PHP 8.4 + Symfony 7.4.* (pull_request) Has been cancelled
Build / PHP 8.5 + Symfony 7.4.* (pull_request) Has been cancelled
Build / Symfony 8 + PHP 8.5 consumer install (pull_request) Has been cancelled
Build / Run Psalm (pull_request) Has been cancelled
Build / Validate composer.json (pull_request) Has been cancelled
Build / Validate Coding Standards (pull_request) Has been cancelled
17 lines
321 B
PHP
17 lines
321 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Behat\Config\Config;
|
|
use Behat\Config\Profile;
|
|
use Behat\Config\Suite;
|
|
use Tests\Behat\Context\TestContext;
|
|
|
|
return (new Config())
|
|
->withProfile((new Profile('default'))
|
|
->withSuite((new Suite('default'))
|
|
->withContexts(TestContext::class),
|
|
),
|
|
)
|
|
;
|