mirror of
https://github.com/itflow-org/itflow
synced 2026-08-23 16:05:12 +00:00
Update imapengine dependancies too
This commit is contained in:
20
libs/vendor/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php
vendored
Normal file
20
libs/vendor/symfony/polyfill-php82/Resources/stubs/AllowDynamicProperties.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
#[Attribute(Attribute::TARGET_CLASS)]
|
||||
final class AllowDynamicProperties
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
18
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php
vendored
Normal file
18
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/BrokenRandomEngineError.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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 Random;
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
class BrokenRandomEngineError extends RandomError
|
||||
{
|
||||
}
|
||||
}
|
||||
18
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php
vendored
Normal file
18
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/CryptoSafeEngine.php
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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 Random;
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
interface CryptoSafeEngine extends Engine
|
||||
{
|
||||
}
|
||||
}
|
||||
19
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php
vendored
Normal file
19
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine.php
vendored
Normal file
@@ -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 Random;
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
interface Engine
|
||||
{
|
||||
public function generate(): string;
|
||||
}
|
||||
}
|
||||
20
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php
vendored
Normal file
20
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/Engine/Secure.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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 Random\Engine;
|
||||
|
||||
use Symfony\Polyfill\Php82 as p;
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
final class Secure extends p\Random\Engine\Secure implements \Random\CryptoSafeEngine
|
||||
{
|
||||
}
|
||||
}
|
||||
21
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php
vendored
Normal file
21
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomError.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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 Random;
|
||||
|
||||
use Symfony\Polyfill\Php82\NoDynamicProperties;
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
class RandomError extends \Error
|
||||
{
|
||||
use NoDynamicProperties;
|
||||
}
|
||||
}
|
||||
21
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php
vendored
Normal file
21
libs/vendor/symfony/polyfill-php82/Resources/stubs/Random/RandomException.php
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
<?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 Random;
|
||||
|
||||
use Symfony\Polyfill\Php82\NoDynamicProperties;
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
class RandomException extends \Exception
|
||||
{
|
||||
use NoDynamicProperties;
|
||||
}
|
||||
}
|
||||
20
libs/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php
vendored
Normal file
20
libs/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameter.php
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
#[Attribute(Attribute::TARGET_PARAMETER)]
|
||||
final class SensitiveParameter
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
16
libs/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php
vendored
Normal file
16
libs/vendor/symfony/polyfill-php82/Resources/stubs/SensitiveParameterValue.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
if (\PHP_VERSION_ID < 80200) {
|
||||
final class SensitiveParameterValue extends Symfony\Polyfill\Php82\SensitiveParameterValue
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user