Namshi\AB\Container::__construct PHP Method

__construct() public method

Constructor
public __construct ( array $tests = [], integer $seed = null )
$tests array
$seed integer
    public function __construct(array $tests = array(), $seed = null)
    {
        foreach ($tests as $test) {
            $this->add($test);
        }
        if ($seed) {
            $this->setSeed($seed);
        }
    }