### Is your feature request related to a problem? Currently, there is no rule that checks whether there is a space after the type casting. As a result, several spellings exist. Without a space: ```php return (int)$lowStockThreshold; ``` With spaces: ```php return (string) max($lowStockThresholds); ``` ### Describe the desired solution Add a rule that checks that there is a space after the type casting. ### Describe the alternatives that you have considered None. ### Additional context _No response_ ### Code of Conduct - [X] I agree to follow this project's Code of Conduct