summaryrefslogtreecommitdiff
path: root/vendor/symfony/cache/Exception
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-07-27 12:26:34 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-07-27 12:26:34 +0100
commit5809450f8c7aee50cbf34aa45eb24752d4ec0285 (patch)
tree749f9e74e7a3deca749ed0c4d39d81b636710663 /vendor/symfony/cache/Exception
parentb646d0aa207ec67f8385350355eef400d32cbaec (diff)
downloadwebtrees-5809450f8c7aee50cbf34aa45eb24752d4ec0285.tar.gz
webtrees-5809450f8c7aee50cbf34aa45eb24752d4ec0285.tar.bz2
webtrees-5809450f8c7aee50cbf34aa45eb24752d4ec0285.zip
eval() is evil
Diffstat (limited to 'vendor/symfony/cache/Exception')
-rw-r--r--vendor/symfony/cache/Exception/CacheException.php19
-rw-r--r--vendor/symfony/cache/Exception/InvalidArgumentException.php19
2 files changed, 38 insertions, 0 deletions
diff --git a/vendor/symfony/cache/Exception/CacheException.php b/vendor/symfony/cache/Exception/CacheException.php
new file mode 100644
index 0000000000..e87b2db8fe
--- /dev/null
+++ b/vendor/symfony/cache/Exception/CacheException.php
@@ -0,0 +1,19 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Symfony\Component\Cache\Exception;
+
+use Psr\Cache\CacheException as Psr6CacheInterface;
+use Psr\SimpleCache\CacheException as SimpleCacheInterface;
+
+class CacheException extends \Exception implements Psr6CacheInterface, SimpleCacheInterface
+{
+}
diff --git a/vendor/symfony/cache/Exception/InvalidArgumentException.php b/vendor/symfony/cache/Exception/InvalidArgumentException.php
new file mode 100644
index 0000000000..828bf3ed77
--- /dev/null
+++ b/vendor/symfony/cache/Exception/InvalidArgumentException.php
@@ -0,0 +1,19 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <fabien@symfony.com>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Symfony\Component\Cache\Exception;
+
+use Psr\Cache\InvalidArgumentException as Psr6CacheInterface;
+use Psr\SimpleCache\InvalidArgumentException as SimpleCacheInterface;
+
+class InvalidArgumentException extends \InvalidArgumentException implements Psr6CacheInterface, SimpleCacheInterface
+{
+}