We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0848acf commit f0800fbCopy full SHA for f0800fb
tests/_data/All/after.php
@@ -0,0 +1,22 @@
1
+<?php declare(strict_types = 1);
2
+
3
+namespace PSR2R;
4
5
+class FixMe {
6
7
+ public function notEnoughWhitespace() {
8
+ if ($x > $y) {
9
+ return;
10
+ }
11
+ if ($y > $z) {
12
13
14
15
+ public function tooMuchWhitespace() {
16
17
18
19
20
21
22
+}
tests/_data/All/before.php
@@ -0,0 +1,23 @@
+class FixMe
+{
+ public function notEnoughWhitespace()
+ {
+ if ($x >$y) {
+ return ;;
+ if ($y> $z) {
+ public function tooMuchWhitespace()
23
0 commit comments