We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
class_definition
1 parent 08a7bee commit 9709f81Copy full SHA for 9709f81
3 files changed
.php-cs-fixer.php
@@ -24,6 +24,7 @@
24
'array_syntax' => true,
25
'binary_operator_spaces' => true,
26
'class_attributes_separation' => true,
27
+ 'class_definition' => true,
28
'concat_space' => [
29
'spacing' => 'one',
30
],
src/News/Entry.php
@@ -2,7 +2,8 @@
2
3
namespace phpweb\News;
4
5
-class Entry {
+class Entry
6
+{
7
public const CATEGORIES = [
8
'frontpage' => 'PHP.net frontpage news',
9
'releases' => 'New PHP release',
src/UserNotes/Sorter.php
namespace phpweb\UserNotes;
-class Sorter {
+class Sorter
private $maxVote;
private $minVote;
0 commit comments