Ferno\Loco\Conc::__construct PHP Méthode

__construct() public méthode

public __construct ( $mults )
    public function __construct($mults)
    {
        foreach ($mults as $mult) {
            if (!is_a($mult, "Mult")) {
                throw new Exception("Not a Mult: " . var_export($mult, true));
            }
        }
        $this->mults = $mults;
    }