for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace TomCizek\SymfonyInteropContainer\Tests\Configurators;
class ConfigFile
{
/** @var string */
private $path;
private $type;
private function __construct(string $path, string $type)
$this->path = $path;
$this->type = $type;
}
public static function record(string $path, string $type)
return new self($path, $type);
public function getPath(): string
return $this->path;
public function getType(): string
return $this->type;