Skip to content

Commit f64c805

Browse files
committed
upgrade Credis to 1.17.0
1 parent 257dd99 commit f64c805

File tree

19 files changed

+864
-1128
lines changed

19 files changed

+864
-1128
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[*.php]
2+
charset=utf-8
3+
end_of_line=lf
4+
insert_final_newline=true
5+
indent_style=space
6+
indent_size=4
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
/*
3+
* This document has been generated with
4+
* https://mlocati.github.io/php-cs-fixer-configurator/#version:3.13.2|configurator
5+
* you can change this configuration by importing this file.
6+
*/
7+
$config = new PhpCsFixer\Config();
8+
return $config
9+
->setRules([
10+
'@PSR12' => true,
11+
'visibility_required' => false, // php 5.6 doesn't support "public const ..."
12+
])
13+
->setFinder(PhpCsFixer\Finder::create()
14+
->in(__DIR__)
15+
->name('*.php')
16+
->ignoreDotFiles(true)
17+
->ignoreVCS(true)
18+
)
19+
;

0 commit comments

Comments
 (0)