CacheException.php
6 months ago
CacheItemInterface.php
6 months ago
CacheItemPoolInterface.php
6 months ago
InvalidArgumentException.php
1 week ago
InvalidArgumentException.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaVendor\Psr\Cache; |
| 4 | |
| 5 | /** |
| 6 | * Exception interface for invalid cache arguments. |
| 7 | * |
| 8 | * Any time an invalid argument is passed into a method it must throw an |
| 9 | * exception class which implements Psr\Cache\InvalidArgumentException. |
| 10 | */ |
| 11 | interface InvalidArgumentException extends CacheException |
| 12 | { |
| 13 | } |
| 14 |