VY
Size: a a a
VY
M
RN
public static function __callStatic($method, $parameters)😊 Настоящая любовь к статическим методам.
{
return (new static)->$method(...$parameters);
}
С
VY
VY
VY
VY
D
D
AH
config/logging.php
AH
public static function __callStatic($method, $parameters)😊 Настоящая любовь к статическим методам.
{
return (new static)->$method(...$parameters);
}
public static function __callStatic($method, $parameters)
{
if (! method_exists(static, $method) {
throw new Exception('fuck off!');
return call_user_func([static, $method], $parameters);
}
}
M
AH
С
AH
RN
public static function __callStatic($method, $parameters)
{
if (! method_exists(static, $method) {
throw new Exception('fuck off!');
return call_user_func([static, $method], $parameters);
}
}
AH