i was kinda wondering maybe it's worth it to write an RFC on PHP type alias. this will be really useful in the sense of maintenance, re-usability, readability and many more..<p>```
<?php<p>type T = bool|int;<p>type Result = string;<p>function greeting(T $input): Result {
return match() {<p><pre><code> true, 1 => 'hello user :) ',
false, 2 => 'good-bye user'
}
</code></pre>
}<p>```<p>What's your opinion on this?