## Expected Behavior <!--- Tell us how it should work. --> Silence those 3 warnings listed below when used within `add_action()` and `add_filter()` context. ## Current Behavior <!--- Explain the difference from the current behavior. --> When you have a code like this: ```php add_action( 'admin_init', static function() { ( new Admin() )->init(); } ); ``` you receive these warnings for the 1st line: * `PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket` * `PEAR.Functions.FunctionCallSignature.MultipleArguments` and this one for the last line: * `PEAR.Functions.FunctionCallSignature.CloseBracketLine` Otherwise, this thing needs to be done which looks kinda ugly and excessive: ```php add_action( 'admin_init', static function() { ( new Admin() )->init(); } ); ``` ## Screenshots <img width="977" alt="image" src="https://github.com/awesomemotive/wpforms-phpcs/assets/282234/8ff080f4-8e8c-4372-86db-24a29a69d6b0">