FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
php-pm/.php_cs.php at master · InternationalCodeCouncil/php-pm · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
InternationalCodeCouncil
/
php-pm
Public
forked from
php-pm/php-pm
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
php-pm
/
.php_cs.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (15 loc) · 407 Bytes
Breadcrumbs
php-pm
/
.php_cs.php
Copy path
File metadata and controls
17 lines (15 loc) · 407 Bytes
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
<?php
$
finder
=
PhpCsFixer
\Finder::
create
()
->
in
(
'
src
'
)
;
return
PhpCsFixer
\Config::
create
()
->
setRules
([
'
@PSR2
'
=>
true
,
'
array_syntax
'
=> [
'
syntax
'
=>
'
short
'
],
'
native_function_invocation
'
=> [
'
strict
'
=>
true
],
])
->
registerCustomFixers
([
new
Drew
\
DebugStatementsFixers
\
Dump
()])
->
setRiskyAllowed
(
true
)
->
setFinder
(
$
finder
)
->
setUsingCache
(
false
)
;
Back
|
FazBrowse Home
|
New Git URL