Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.php_cs.php')
-rw-r--r--.php_cs.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/.php_cs.php b/.php_cs.php
index df39837a..92104cfb 100644
--- a/.php_cs.php
+++ b/.php_cs.php
@@ -3,7 +3,7 @@
declare(strict_types=1);
/**
- * PHPPgAdmin 6.1.3
+ * PHPPgAdmin6
*/
use Ergebnis\PhpCsFixer\Config;
@@ -12,10 +12,11 @@ $composerinfo = \json_decode(\file_get_contents('composer.json'));
$version = $composerinfo->extra->version;
-$header = "PHPPgAdmin {$version}";
+$header = 'PHPPgAdmin6';
-$config = Config\Factory::fromRuleSet(new Config\RuleSet\Php71($header), [
+$config = Config\Factory::fromRuleSet(new Config\RuleSet\Php74($header), [
'declare_strict_types' => false,
+ 'void_return' => false,
'escape_implicit_backslashes' => false,
'final_class' => false,
'final_internal_class' => false,