Apply suggestions from code review

Co-Authored-By: pamil <kamil@kokot.me>
This commit is contained in:
Alan Poulain
2019-02-13 11:35:22 +01:00
committed by Kamil Kokot
parent c54c581e74
commit 8a972b5b48
5 changed files with 15 additions and 21 deletions

View File

@@ -0,0 +1,64 @@
<?php
declare(strict_types=1);
/*
* This file is part of the SymfonyExtension package.
*
* (c) Kamil Kokot <kamil@kokot.me>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FriendsOfBehat\SymfonyExtension\Context\Environment;
use Behat\Behat\Context\Environment\ContextEnvironment;
use Behat\Testwork\Environment\StaticEnvironment;
use Behat\Testwork\Suite\Suite;
use FriendsOfBehat\SymfonyExtension\Context\Environment\Handler\ContextServiceEnvironmentHandler;
/**
* @see ContextServiceEnvironmentHandler
*/
final class UninitializedSymfonyExtensionEnvironment extends StaticEnvironment implements SymfonyExtensionEnvironment
{
/** @var string[] */
private $contexts;
/** @var ContextEnvironment|null */
private $delegatedEnvironment;
public function __construct(Suite $suite, array $contexts, ContextEnvironment $delegatedEnvironment)
{
parent::__construct($suite);
$this->contexts = $contexts;
$this->delegatedEnvironment = $delegatedEnvironment;
}
public function getServices(): array
{
return array_keys($this->contexts);
}
public function hasContexts(): bool
{
return count($this->contexts) > 0 || $this->delegatedEnvironment->hasContexts();
}
public function getContextClasses(): array
{
return array_merge(array_values($this->contexts), $this->delegatedEnvironment->getContextClasses());
}
public function hasContextClass($class): bool
{
return in_array($class, $this->contexts, true) || $this->delegatedEnvironment->hasContextClass($class);
}
public function getDelegatedEnvironment(): ContextEnvironment
{
return $this->delegatedEnvironment;
}
}