Skip to content

Commit eab3498

Browse files
ThomasLandauerondrejmirtes
authored andcommitted
Fixing PSR-12
See https://www.php-fig.org/psr/psr-12/#44-methods-and-functions > Method and function names MUST NOT be declared with space after the method name.
1 parent 71e529e commit eab3498

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/src/writing-php-code/phpdocs-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This is how a valid PHPDoc above a function or a method can look like:
1818
* @param Foo $param
1919
* @return Bar
2020
*/
21-
function foo ($param) { ... }
21+
function foo($param) { ... }
2222
```
2323

2424
Properties

0 commit comments

Comments
 (0)