Skip to content
New issue

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

#94 - return statement missing blank line fixer #96

Merged
merged 4 commits into from
Jun 20, 2023
Merged

Conversation

kamilpiech97
Copy link
Member

This should close #94.

With these changes this:

    public function getFoo(int $foo): int {
        $bar = $foo;
        return $bar;
    }

will be fixed into:

    public function getFoo(int $foo): int {
        $bar = $foo;

        return $bar;
    }

jsawo
jsawo previously approved these changes Jun 16, 2023
Baakoma
Baakoma previously approved these changes Jun 16, 2023
@kamilpiech97 kamilpiech97 requested review from Baakoma and mtracz June 16, 2023 09:59
Copy link
Member

@krzysztofrewak krzysztofrewak left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(approved by misclick)

@krzysztofrewak krzysztofrewak changed the title #94 - blank line fixer #94 - return statement missing blank line fixer Jun 16, 2023
@kamilpiech97 kamilpiech97 dismissed stale reviews from Baakoma and jsawo via a2b2238 June 16, 2023 16:30
@kamilpiech97 kamilpiech97 requested a review from jsawo June 16, 2023 17:00
@kamilpiech97 kamilpiech97 merged commit 0018785 into main Jun 20, 2023
@kamilpiech97 kamilpiech97 deleted the #94-empty-line branch June 20, 2023 12:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Empty line before return
5 participants