MadelineProto/src/polyfill.php

20 lines
415 B
PHP
Raw Normal View History

2019-06-18 12:31:44 +02:00
<?php
// Polyfill for some PHP 5 functions
function callMe($allable, ...$args)
{
return $allable(...$args);
}
function returnMe($res) {
return $res;
}
if (!function_exists('is_iterable')) {
function is_iterable($var) {
return is_array($var) || $var instanceof Traversable;
}
}
if (!function_exists('error_clear_last')) {
2019-06-21 16:04:05 +02:00
function error_clear_last() {
@trigger_error("");
}
}