for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Injector\Tests\Support;
class MakeEngineMatherWithParam
{
public EngineInterface $engine1;
public EngineInterface $engine2;
public string $parameter;
public function __construct(string $parameter, EngineInterface $engine1, EngineInterface $engine2)
$this->engine1 = $engine1;
$this->engine2 = $engine2;
$this->parameter = $parameter;
}