This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For my kids and future setup | |
winget install Oracle.JavaRuntimeEnvironment | |
winget install Mojang.MinecraftLauncher | |
# If you want to build any mods in the future | |
# winget search java | |
winget install Oracle.JDK.23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ValueToStatement | |
public function valueToStatement(mixed $value): Node\Expr | |
{ | |
return match (gettype($value)) { | |
'boolean' => new Node\Expr\ConstFetch(new Node\Name($value ? 'true' : 'false')), | |
'integer' => new Node\Scalar\Int_($value), | |
'double' => new Node\Scalar\Float_($value), | |
'string' => new Node\Scalar\String_($value), | |
'array' => new Node\Expr\Array_( |
OlderNewer