FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
phpQRcode/.php-cs-fixer.dist.php at main · MADEVAL/phpQRcode · GitHub
MADEVAL
/
phpQRcode
Public
Notifications
You must be signed in to change notification settings
Fork
5
Star
34
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
phpQRcode
/
.php-cs-fixer.dist.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (19 loc) · 714 Bytes
Breadcrumbs
phpQRcode
/
.php-cs-fixer.dist.php
Copy path
File metadata and controls
21 lines (19 loc) · 714 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
18
19
20
21
<?php
$
finder
=
PhpCsFixer
\Finder::
create
()
->
in
([
__DIR__
.
'
/src
'
,
__DIR__
.
'
/tests
'
]);
return
(
new
PhpCsFixer
\
Config
())
->
setRules
([
'
@PSR12
'
=>
true
,
'
declare_strict_types
'
=>
true
,
'
no_unused_imports
'
=>
true
,
'
ordered_imports
'
=> [
'
sort_algorithm
'
=>
'
alpha
'
],
'
single_quote
'
=>
true
,
'
no_trailing_whitespace
'
=>
true
,
'
no_whitespace_in_blank_line
'
=>
true
,
'
array_syntax
'
=> [
'
syntax
'
=>
'
short
'
],
'
blank_line_before_statement
'
=> [
'
statements
'
=> [
'
return
'
]],
'
no_closing_tag
'
=>
true
,
'
trailing_comma_in_multiline
'
=> [
'
elements
'
=> [
'
arrays
'
]],
])
->
setFinder
(
$
finder
)
->
setRiskyAllowed
(
true
);
Back
|
FazBrowse Home
|
New Git URL