FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker-php/.php_cs at master · j2vdeveloper/docker-php · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
j2vdeveloper
/
docker-php
Public
forked from
docker-php/docker-php
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
docker-php
/
.php_cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (36 loc) · 1.03 KB
Breadcrumbs
docker-php
/
.php_cs
Copy path
File metadata and controls
38 lines (36 loc) · 1.03 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
<?php
$
finder
= \
PhpCsFixer
\Finder::
create
()
->
in
([
__DIR__
.
'
/src
'
,
__DIR__
.
'
/tests
'
,
])
->
notPath
(
'
/fixtures/
'
)
;
return
\
PhpCsFixer
\Config::
create
()
->
setRules
([
'
@Symfony
'
=>
true
,
'
@Symfony:risky
'
=>
true
,
'
@PHP56Migration
'
=>
true
,
'
@PHP56Migration:risky
'
=>
true
,
'
@PHP70Migration
'
=>
true
,
'
@PHP70Migration:risky
'
=>
true
,
'
@PHP71Migration
'
=>
true
,
'
@PHP71Migration:risky
'
=>
true
,
'
array_syntax
'
=> [
'
syntax
'
=>
'
short
'
],
'
combine_consecutive_unsets
'
=>
true
,
'
declare_strict_types
'
=>
true
,
'
linebreak_after_opening_tag
'
=>
true
,
'
modernize_types_casting
'
=>
true
,
'
native_function_invocation
'
=>
true
,
'
no_php4_constructor
'
=>
true
,
'
ordered_imports
'
=>
true
,
'
php_unit_strict
'
=>
true
,
'
phpdoc_order
'
=>
true
,
'
strict_comparison
'
=>
true
,
'
strict_param
'
=>
true
,
])
->
setRiskyAllowed
(
true
)
->
setFinder
(
$
finder
)
;
Back
|
FazBrowse Home
|
New Git URL