So in the documentation it says that there is enum support, however can we also use these enums for type hinting? **Example** ``` enum Direction { Up = 'up', Down = 'down' } function move(Direction $direction) { .... } ```
So in the documentation it says that there is enum support, however can we also use these enums for type hinting?
Example