for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Fixture\Innmind\Compose;
final class ServiceFixture
{
public $first;
public $second;
public $third;
public function __construct(int $first, \stdClass $second, ...$third)
$this->first = $first;
$this->second = $second;
$this->third = $third;
}