Tom Spink

Results 2 comments of Tom Spink

Hello, Thanks for trying to port Doom - this would be brilliant! Now, you've made an interesting observation here that is quite correct - that module accessing code will not...

Hello, I've also observed this behaviour, although with a different (simplified) example: ```php trait SingletonTrait { private static $instance; public static function get(): self { if (self::$instance === null) {...