summaryrefslogtreecommitdiffstats
path: root/.php_cs.dist
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-05 08:42:47 +0200
committerJoas Schilling <coding@schilljs.com>2022-08-05 08:42:47 +0200
commit204c3c04cc2a3f91b6f96a445537d53b3dd4a7e5 (patch)
tree0021a0a7ea223f41a205a9f514746cf24c6ab53f /.php_cs.dist
parentb285cd442d4c29a6c6a5084ad7e646b3bb1aec93 (diff)
Reinstall version so php-cs-fixer is up to date
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.php_cs.dist')
-rw-r--r--.php_cs.dist17
1 files changed, 0 insertions, 17 deletions
diff --git a/.php_cs.dist b/.php_cs.dist
deleted file mode 100644
index 8a0cb43c..00000000
--- a/.php_cs.dist
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-declare(strict_types=1);
-
-require_once './vendor/autoload.php';
-
-use Nextcloud\CodingStandard\Config;
-
-$config = new Config();
-$config
- ->getFinder()
- ->notPath('build')
- ->notPath('l10n')
- ->notPath('src')
- ->notPath('vendor')
- ->in(__DIR__);
-return $config;