18 | */
19 | class UploadException extends FileException
20 | {
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/symfony/http-foundation/File/Stream.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\HttpFoundation\File;
13 |
14 | /**
15 | * A PHP stream of unknown size.
16 | *
17 | * @author Nicolas Grekas
18 | */
19 | class Stream extends File
20 | {
21 | public function getSize(): int|false
22 | {
23 | return false;
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/vendor/symfony/http-foundation/README.md:
--------------------------------------------------------------------------------
1 | HttpFoundation Component
2 | ========================
3 |
4 | The HttpFoundation component defines an object-oriented layer for the HTTP
5 | specification.
6 |
7 | Resources
8 | ---------
9 |
10 | * [Documentation](https://symfony.com/doc/current/components/http_foundation.html)
11 | * [Contributing](https://symfony.com/doc/current/contributing/index.html)
12 | * [Report issues](https://github.com/symfony/symfony/issues) and
13 | [send Pull Requests](https://github.com/symfony/symfony/pulls)
14 | in the [main Symfony repository](https://github.com/symfony/symfony)
15 |
--------------------------------------------------------------------------------
/vendor/symfony/http-foundation/Session/FlashBagAwareSessionInterface.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\HttpFoundation\Session;
13 |
14 | use Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface;
15 |
16 | /**
17 | * Interface for session with a flashbag.
18 | */
19 | interface FlashBagAwareSessionInterface extends SessionInterface
20 | {
21 | public function getFlashBag(): FlashBagInterface;
22 | }
23 |
--------------------------------------------------------------------------------
/vendor/symfony/http-foundation/Session/SessionFactoryInterface.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | namespace Symfony\Component\HttpFoundation\Session;
13 |
14 | /**
15 | * @author Kevin Bond
16 | */
17 | interface SessionFactoryInterface
18 | {
19 | public function createSession(): SessionInterface;
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-mbstring/README.md:
--------------------------------------------------------------------------------
1 | Symfony Polyfill / Mbstring
2 | ===========================
3 |
4 | This component provides a partial, native PHP implementation for the
5 | [Mbstring](https://php.net/mbstring) extension.
6 |
7 | More information can be found in the
8 | [main Polyfill README](https://github.com/symfony/polyfill/blob/main/README.md).
9 |
10 | License
11 | =======
12 |
13 | This library is released under the [MIT license](LICENSE).
14 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateError.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateError extends Error
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateException extends Exception
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateInvalidOperationException extends DateException
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateInvalidTimeZoneException extends DateException
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateMalformedIntervalStringException extends DateException
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateMalformedPeriodStringException extends DateException
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateMalformedStringException extends DateException
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateObjectError extends DateError
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class DateRangeError extends DateError
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/Override.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | #[Attribute(Attribute::TARGET_METHOD)]
14 | final class Override
15 | {
16 | public function __construct()
17 | {
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php:
--------------------------------------------------------------------------------
1 |
7 | *
8 | * For the full copyright and license information, please view the LICENSE
9 | * file that was distributed with this source code.
10 | */
11 |
12 | if (\PHP_VERSION_ID < 80300) {
13 | class SQLite3Exception extends Exception
14 | {
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/xml/Menu/payment.xml:
--------------------------------------------------------------------------------
1 |
2 |
17 |
--------------------------------------------------------------------------------