Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 63a47d63 authored by Ronak Patel's avatar Ronak Patel
Browse files

added php fixer file

parent 0c508d61
Loading
Loading
Loading
Loading
Loading

.php-cs-fixer.dist.php

0 → 100644
+18 −0
Original line number Diff line number Diff line
<?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('src')
	->notPath('vendor')
	->in(__DIR__);
return $config;
 No newline at end of file