Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
20
vendor/symfony/polyfill-php83/bootstrap.php
vendored
Normal file
20
vendor/symfony/polyfill-php83/bootstrap.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.
|
||||
*/
|
||||
|
||||
use Symfony\Polyfill\Php83 as p;
|
||||
|
||||
if (\PHP_VERSION_ID >= 80300) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!function_exists('json_validate')) {
|
||||
function json_validate(string $json, int $depth = 512, int $flags = 0): bool { return p\Php83::json_validate($json, $depth, $flags); }
|
||||
}
|
||||
Reference in New Issue
Block a user