?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/vendor/league/tactician-bundle/src/DependencyInjection/



?? Go up: /home/webdevt/prestashop17/vendor/league/tactician-bundle/src

?? Viewing: InvalidCommandBusId.php

<?php
declare(strict_types=1);

namespace League\Tactician\Bundle\DependencyInjection;

final class InvalidCommandBusId extends \Exception
{
    public static function ofName(string $expectedId, array $validIds)
    {
        return new static(
            "Could not find a command bus with id '$expectedId'. Valid buses are: " . implode(', ', $validIds)
        );
    }
}


??

??