Skip to content

Instantly share code, notes, and snippets.

View nyamsprod's full-sized avatar
😎

Ignace Nyamagana Butera nyamsprod

😎
View GitHub Profile
<?php
class FoobarWithReflectionCall
{
public static function staticMethod(int|float $value): int|float
{
return $value;
}
public static function __callStatic(string $name, array $arguments): int|float|null