FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
framework/.php_cs at 5.2 · JavaDevl/framework · GitHub
JavaDevl
/
framework
Public
forked from
laravel/framework
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
framework
/
.php_cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
77 lines (74 loc) · 1.87 KB
Breadcrumbs
framework
/
.php_cs
Copy path
File metadata and controls
77 lines (74 loc) · 1.87 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
use
Symfony
\
CS
\
Config
\
Config
;
use
Symfony
\
CS
\
FixerInterface
;
use
Symfony
\
CS
\
Finder
\
DefaultFinder
;
$
fixers
= [
'
blankline_after_open_tag
'
,
'
braces
'
,
'
concat_without_spaces
'
,
'
double_arrow_multiline_whitespaces
'
,
'
duplicate_semicolon
'
,
'
elseif
'
,
'
empty_return
'
,
'
encoding
'
,
'
eof_ending
'
,
'
extra_empty_lines
'
,
'
function_call_space
'
,
'
function_declaration
'
,
'
include
'
,
'
indentation
'
,
'
join_function
'
,
'
line_after_namespace
'
,
'
linefeed
'
,
'
list_commas
'
,
'
logical_not_operators_with_successor_space
'
,
'
lowercase_constants
'
,
'
lowercase_keywords
'
,
'
method_argument_space
'
,
'
multiline_array_trailing_comma
'
,
'
multiline_spaces_before_semicolon
'
,
'
multiple_use
'
,
'
namespace_no_leading_whitespace
'
,
'
no_blank_lines_after_class_opening
'
,
'
no_empty_lines_after_phpdocs
'
,
'
object_operator
'
,
'
operators_spaces
'
,
'
parenthesis
'
,
'
phpdoc_indent
'
,
'
phpdoc_inline_tag
'
,
'
phpdoc_no_access
'
,
'
phpdoc_no_package
'
,
'
phpdoc_scalar
'
,
'
phpdoc_short_description
'
,
'
phpdoc_to_comment
'
,
'
phpdoc_trim
'
,
'
phpdoc_type_to_var
'
,
'
phpdoc_var_without_name
'
,
'
remove_leading_slash_use
'
,
'
remove_lines_between_uses
'
,
'
return
'
,
'
self_accessor
'
,
'
short_array_syntax
'
,
'
short_echo_tag
'
,
'
short_tag
'
,
'
single_array_no_trailing_comma
'
,
'
single_blank_line_before_namespace
'
,
'
single_line_after_imports
'
,
'
single_quote
'
,
'
spaces_before_semicolon
'
,
'
spaces_cast
'
,
'
standardize_not_equal
'
,
'
ternary_spaces
'
,
'
trailing_spaces
'
,
'
trim_array_spaces
'
,
'
unalign_equals
'
,
'
unary_operators_spaces
'
,
'
unused_use
'
,
'
visibility
'
,
'
whitespacy_lines
'
,
];
return
Config::
create
()
->
finder
(DefaultFinder::
create
()->
in
(
__DIR__
))
->
fixers
(
$
fixers
)
->
level
(FixerInterface::
NONE_LEVEL
)
->
setUsingCache
(
true
);
Back
|
FazBrowse Home
|
New Git URL