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
KawaiiGherkin\Formatter\Example::format
The file src/Formatter/Example.php have a comment recommending refactoring the return method of KawaiiGherkin\Formatter\Example::format class:
src/Formatter/Example.php
// TODO: refactor this part return implode( array_merge( [ $this->indent(self::INDENTATION * 2) . rtrim($scenario->getExampleTable()->getKeyword()) . ":\n", ], array_map( function ($arguments) { return $this->indent(self::INDENTATION * 2 + 2) . trim($arguments) . "\n"; }, explode("\n", $scenario->getExampleTable()->getTableAsString()) ) ) );
I removed this comment in PR #7.
The text was updated successfully, but these errors were encountered:
Removes TODO comment of file src/Formatter/Example.php
78f3e79
Github issue reference: malukenho#9
No branches or pull requests
The file
src/Formatter/Example.php
have a comment recommending refactoring the return method ofKawaiiGherkin\Formatter\Example::format
class:I removed this comment in PR #7.
The text was updated successfully, but these errors were encountered: