polls/.php_cs.dist

21 строка
338 B
Plaintext
Исходник Обычный вид История

2020-09-03 09:23:56 +03:00
<?php
declare(strict_types=1);
require_once './vendor/autoload.php';
use Nextcloud\CodingStandard\Config;
$config = new Config();
$config
->getFinder()
->ignoreVCSIgnored(true)
->notPath('build')
->notPath('l10n')
->notPath('lib/Vendor')
->notPath('src')
->notPath('vendor')
->notPath('tests')
->in(__DIR__);
return $config;