Kraken\Channel\Router\RouterComposite::__construct PHP Метод

__construct() публичный Метод

public __construct ( RouterInterface[] | Kraken\Channel\Router\RouterCompositeInterface[] $bus = [] )
$bus RouterInterface[] | Kraken\Channel\Router\RouterCompositeInterface[]
    public function __construct($bus = [])
    {
        $this->bus = [];
        foreach ($bus as $name => $router) {
            $this->setBus($name, $router);
        }
    }