Crummy\Phlack\Common\Exception\UnexpectedTypeException::__construct PHP Method

__construct() public method

public __construct ( mixed $value, string | array $expectedType )
$value mixed
$expectedType string | array
    public function __construct($value, $expectedType)
    {
        parent::__construct(sprintf('Expected argument of type %s, %s given.', is_array($expectedType) ? '(' . implode(' | ', $expectedType) . ')' : $expectedType, is_object($value) ? get_class($value) : gettype($value)));
    }
UnexpectedTypeException