?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/modules/ps_checkout/vendor/league/tactician/src/Exception/



?? Go up: /home/webdevt/prestashop17/modules/ps_checkout/vendor/league/tactician/src

?? Viewing: InvalidMiddlewareException.php

<?php

namespace League\Tactician\Exception;

/**
 * Thrown when the CommandBus was instantiated with an invalid middleware object
 */
class InvalidMiddlewareException extends \InvalidArgumentException implements Exception
{
    public static function forMiddleware($middleware)
    {
        $name = is_object($middleware) ? get_class($middleware) : gettype($middleware);
        $message = sprintf(
            'Cannot add "%s" to middleware chain as it does not implement the Middleware interface.',
            $name
        );
        return new static($message);
    }
}


??

??