for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Innmind\Compose\Definition\Service;
use Innmind\Immutable\Str;
interface Constructor
{
/**
* @throws ValueNotSupported
*/
public static function fromString(Str $value): self;
* @param mixed $arguments
public function __invoke(...$arguments): object;
}