summaryrefslogtreecommitdiff
path: root/vendor/symfony/polyfill-php82/Resources/stubs/Random
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/symfony/polyfill-php82/Resources/stubs/Random')
-rw-r--r--vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php18
-rw-r--r--vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php18
-rw-r--r--vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php19
-rw-r--r--vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php20
-rw-r--r--vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php21
-rw-r--r--vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php21
6 files changed, 117 insertions, 0 deletions
diff --git a/vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php b/vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php
new file mode 100644
index 000000000..971ed570d
--- /dev/null
+++ b/vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php
@@ -0,0 +1,18 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Random;
+
+if (\PHP_VERSION_ID < 80200) {
+ class BrokenRandomEngineError extends RandomError
+ {
+ }
+}
diff --git a/vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php b/vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php
new file mode 100644
index 000000000..fb32496f1
--- /dev/null
+++ b/vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php
@@ -0,0 +1,18 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Random;
+
+if (\PHP_VERSION_ID < 80200) {
+ interface CryptoSafeEngine extends Engine
+ {
+ }
+}
diff --git a/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php b/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php
new file mode 100644
index 000000000..4fc78c8fb
--- /dev/null
+++ b/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php
@@ -0,0 +1,19 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Random;
+
+if (\PHP_VERSION_ID < 80200) {
+ interface Engine
+ {
+ public function generate(): string;
+ }
+}
diff --git a/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php b/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php
new file mode 100644
index 000000000..e779b5445
--- /dev/null
+++ b/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php
@@ -0,0 +1,20 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Random\Engine;
+
+use Symfony\Polyfill\Php82 as p;
+
+if (\PHP_VERSION_ID < 80200) {
+ final class Secure extends p\Random\Engine\Secure implements \Random\CryptoSafeEngine
+ {
+ }
+}
diff --git a/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php b/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php
new file mode 100644
index 000000000..bf5e89e01
--- /dev/null
+++ b/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php
@@ -0,0 +1,21 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Random;
+
+use Symfony\Polyfill\Php82\NoDynamicProperties;
+
+if (\PHP_VERSION_ID < 80200) {
+ class RandomError extends \Error
+ {
+ use NoDynamicProperties;
+ }
+}
diff --git a/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php b/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php
new file mode 100644
index 000000000..3b9aae140
--- /dev/null
+++ b/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php
@@ -0,0 +1,21 @@
+<?php
+
+/*
+ * This file is part of the Symfony package.
+ *
+ * (c) Fabien Potencier <[email protected]>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+namespace Random;
+
+use Symfony\Polyfill\Php82\NoDynamicProperties;
+
+if (\PHP_VERSION_ID < 80200) {
+ class RandomException extends \Exception
+ {
+ use NoDynamicProperties;
+ }
+}