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

.php_cs.dist - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7193b5445ca31c1eddaba0a21502a01844a4de9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
$finder = PhpCsFixer\Finder::create()
	->in('lib/')
	->in('tests/')
;
return PhpCsFixer\Config::create()
	->setRules([
		'@PSR2' => true,
		'array_syntax' => ['syntax' => 'short'],
		'binary_operator_spaces' => ['align_double_arrow' => false, 'align_equals' => false],
	])
	->setIndent("\t")
	->setFinder($finder)
	;