We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cbacb3 commit 090fbceCopy full SHA for 090fbce
src/Prooph.php
@@ -27,7 +27,7 @@ public function __construct()
27
public function getRules(): array
28
{
29
$rules = [
30
- '@PSR2' => true,
+ '@PSR12' => true,
31
'array_syntax' => ['syntax' => 'short'],
32
'binary_operator_spaces' => [
33
'operators' => [
@@ -74,7 +74,10 @@ public function getRules(): array
74
'strategy' => 'no_multi_line',
75
],
76
'native_function_casing' => true,
77
- 'native_function_invocation' => true,
+ 'native_function_invocation' => [
78
+ 'include' => ['@internal'],
79
+ 'scope' => 'all',
80
+ ],
81
'new_with_braces' => true,
82
'no_alias_functions' => true,
83
'no_blank_lines_after_class_opening' => true,
0 commit comments