We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Case 1: block comments
else { /*if ( is_null($input_type) || ($input_type == self::TEXT_INPUT) || ($input_type == self::PASSWORD_INPUT) ) {*/ return TextInput::fromNodeElement($node_element); }
Case 2: multiple single line comments (just use https://github.com/aik099/CodingStandard/blob/master/CodingStandard/Sniffs/WhiteSpace/ControlStructureSpacingSniff.php#L408)
else { // line 1 // line 2 return TextInput::fromNodeElement($node_element); }
Case 3: comment belonging to other code (need to ignore such comment and don't combine it with return)
$var_name = new ClassName(); /** @var ClassName $var_name */ return $var_name;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Case 1: block comments
Case 2: multiple single line comments (just use https://github.com/aik099/CodingStandard/blob/master/CodingStandard/Sniffs/WhiteSpace/ControlStructureSpacingSniff.php#L408)
Case 3: comment belonging to other code (need to ignore such comment and don't combine it with return)
The text was updated successfully, but these errors were encountered: