diff options
| author | Greg Roach <fisharebest@gmail.com> | 2018-05-31 09:45:16 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2018-05-31 09:57:27 +0100 |
| commit | ffe6005c11fdad01969e67c039b0d73beb0232e9 (patch) | |
| tree | 6d8df2e00473a813fef26155db549f9a969092f7 /vendor/symfony/polyfill-php70/Resources | |
| parent | bba27599b02e0b6f90f62348bb4fa32bd74056d0 (diff) | |
| download | webtrees-ffe6005c11fdad01969e67c039b0d73beb0232e9.tar.gz webtrees-ffe6005c11fdad01969e67c039b0d73beb0232e9.tar.bz2 webtrees-ffe6005c11fdad01969e67c039b0d73beb0232e9.zip | |
Update minimum PHP version to 7.0.8 so that we can use the 3.4 LTS version of symfony
Diffstat (limited to 'vendor/symfony/polyfill-php70/Resources')
7 files changed, 53 insertions, 0 deletions
diff --git a/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php b/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php new file mode 100644 index 0000000000..6819124462 --- /dev/null +++ b/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php @@ -0,0 +1,5 @@ +<?php + +class ArithmeticError extends Error +{ +} diff --git a/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php b/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php new file mode 100644 index 0000000000..acb125080f --- /dev/null +++ b/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php @@ -0,0 +1,5 @@ +<?php + +class AssertionError extends Error +{ +} diff --git a/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php b/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php new file mode 100644 index 0000000000..c99278b31d --- /dev/null +++ b/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php @@ -0,0 +1,5 @@ +<?php + +class DivisionByZeroError extends Error +{ +} diff --git a/vendor/symfony/polyfill-php70/Resources/stubs/Error.php b/vendor/symfony/polyfill-php70/Resources/stubs/Error.php new file mode 100644 index 0000000000..405847fb89 --- /dev/null +++ b/vendor/symfony/polyfill-php70/Resources/stubs/Error.php @@ -0,0 +1,5 @@ +<?php + +class Error extends Exception +{ +} diff --git a/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php b/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php new file mode 100644 index 0000000000..2dd447dd43 --- /dev/null +++ b/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php @@ -0,0 +1,5 @@ +<?php + +class ParseError extends Error +{ +} diff --git a/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php b/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php new file mode 100644 index 0000000000..0cc02c8f92 --- /dev/null +++ b/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php @@ -0,0 +1,23 @@ +<?php + +interface SessionUpdateTimestampHandlerInterface +{ + /** + * Checks if a session identifier already exists or not. + * + * @param string $key + * + * @return bool + */ + public function validateId($key); + + /** + * Updates the timestamp of a session when its data didn't change. + * + * @param string $key + * @param string $val + * + * @return bool + */ + public function updateTimestamp($key, $val); +} diff --git a/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php b/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php new file mode 100644 index 0000000000..2bed1b4831 --- /dev/null +++ b/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php @@ -0,0 +1,5 @@ +<?php + +class TypeError extends Error +{ +} |
