angelxmoreno/cakephp-simplecache-bridge

View on GitHub
src/InvalidArgumentException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Axm\CakePHPSimpleCacheBridge;

use InvalidArgumentException as BaseInvalidArgumentException;
use Psr\SimpleCache\InvalidArgumentException as SimpleCacheInvalidArgumentException;

/**
 * Class InvalidArgumentException
 */
class InvalidArgumentException extends BaseInvalidArgumentException implements SimpleCacheInvalidArgumentException
{

}