2021-05-10 00:23:30 +00:00
|
|
|
<?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.
|
|
|
|
*/
|
2021-12-10 00:25:09 +00:00
|
|
|
use RectorPrefix20211210\Symfony\Polyfill\Php80 as p;
|
2021-05-10 00:23:30 +00:00
|
|
|
if (\PHP_VERSION_ID >= 80000) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!\defined('FILTER_VALIDATE_BOOL') && \defined('FILTER_VALIDATE_BOOLEAN')) {
|
|
|
|
\define('FILTER_VALIDATE_BOOL', \FILTER_VALIDATE_BOOLEAN);
|
|
|
|
}
|
|
|
|
if (!\function_exists('fdiv')) {
|
|
|
|
function fdiv(float $num1, float $num2) : float
|
|
|
|
{
|
2021-12-10 00:25:09 +00:00
|
|
|
return \RectorPrefix20211210\Symfony\Polyfill\Php80\Php80::fdiv($num1, $num2);
|
2021-05-10 00:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!\function_exists('preg_last_error_msg')) {
|
|
|
|
function preg_last_error_msg() : string
|
|
|
|
{
|
2021-12-10 00:25:09 +00:00
|
|
|
return \RectorPrefix20211210\Symfony\Polyfill\Php80\Php80::preg_last_error_msg();
|
2021-05-10 00:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!\function_exists('str_contains')) {
|
2021-07-29 07:26:45 +00:00
|
|
|
function str_contains(?string $haystack, ?string $needle) : bool
|
2021-05-10 00:23:30 +00:00
|
|
|
{
|
2021-12-10 00:25:09 +00:00
|
|
|
return \RectorPrefix20211210\Symfony\Polyfill\Php80\Php80::str_contains($haystack ?? '', $needle ?? '');
|
2021-05-10 00:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!\function_exists('str_starts_with')) {
|
2021-07-29 07:26:45 +00:00
|
|
|
function str_starts_with(?string $haystack, ?string $needle) : bool
|
2021-05-10 00:23:30 +00:00
|
|
|
{
|
2021-12-10 00:25:09 +00:00
|
|
|
return \RectorPrefix20211210\Symfony\Polyfill\Php80\Php80::str_starts_with($haystack ?? '', $needle ?? '');
|
2021-05-10 00:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!\function_exists('str_ends_with')) {
|
2021-07-29 07:26:45 +00:00
|
|
|
function str_ends_with(?string $haystack, ?string $needle) : bool
|
2021-05-10 00:23:30 +00:00
|
|
|
{
|
2021-12-10 00:25:09 +00:00
|
|
|
return \RectorPrefix20211210\Symfony\Polyfill\Php80\Php80::str_ends_with($haystack ?? '', $needle ?? '');
|
2021-05-10 00:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!\function_exists('get_debug_type')) {
|
|
|
|
function get_debug_type($value) : string
|
|
|
|
{
|
2021-12-10 00:25:09 +00:00
|
|
|
return \RectorPrefix20211210\Symfony\Polyfill\Php80\Php80::get_debug_type($value);
|
2021-05-10 00:23:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!\function_exists('get_resource_id')) {
|
|
|
|
function get_resource_id($resource) : int
|
|
|
|
{
|
2021-12-10 00:25:09 +00:00
|
|
|
return \RectorPrefix20211210\Symfony\Polyfill\Php80\Php80::get_resource_id($resource);
|
2021-05-10 00:23:30 +00:00
|
|
|
}
|
|
|
|
}
|