for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Porpaginas\Specification\Logic;
/**
* @author Kevin Bond <[email protected]>
*/
abstract class Composite
{
private array $children;
public function __construct(...$children)
$this->children = $children;
}
public function children(): array
return $this->children;