CacheException.php
4 years ago
CacheItemInterface.php
4 years ago
CacheItemPoolInterface.php
4 years ago
InvalidArgumentException.php
4 years ago
InvalidArgumentException.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPMailSMTP\Vendor\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 \WPMailSMTP\Vendor\Psr\Cache\CacheException |
| 12 | { |
| 13 | } |
| 14 |