-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpint.json
More file actions
37 lines (37 loc) · 1.05 KB
/
pint.json
File metadata and controls
37 lines (37 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"preset": "laravel",
"rules": {
"declare_strict_types": true,
"protected_to_private":true,
"modernize_strpos":true,
"encoding":true,
"class_reference_name_casing":true,
"final_public_method_for_abstract_class":true,
"ordered_class_elements":{"order": [
"use_trait",
"case",
"constant_public",
"constant_protected",
"constant_private",
"property_public",
"property_protected",
"property_private",
"construct",
"destruct",
"magic",
"phpunit",
"method_public",
"method_protected",
"method_private"
]},
"ordered_interfaces":{"order": "alpha"},
"ordered_traits":{"case_sensitive": false},
"ordered_types":{"case_sensitive": false},
"self_accessor":true,
"self_static_accessor":true,
"visibility_required":{"elements": ["const","method","property"]},
"final_class":true
},
"exclude": [
]
}