-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.php-cs-fixer.dist.php
More file actions
executable file
·38 lines (32 loc) · 983 Bytes
/
.php-cs-fixer.dist.php
File metadata and controls
executable file
·38 lines (32 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
declare(strict_types=1);
/**
* This file is part of coisa/error-handler.
*
* This source file is subject to the license that is bundled
* with this source code in the file LICENSE.
*
* @link https://github.com/coisa/error-handler
*
* @copyright Copyright (c) 2022-2024 Felipe Sayão Lobato Abreu <github@mentordosnerds.com.br>
* @license https://opensource.org/licenses/MIT MIT License
*/
use CoiSA\PhpCsFixer\PhpCsFixer;
/**
* This file is part of coisa/logger.
*
* This source file is subject to the license that is bundled
* with this source code in the file LICENSE.
*
* @see https://github.com/coisa/factory
* @see https://12factor.net/logs
*
* @copyright Copyright (c) 2022 Felipe Sayão Lobato Abreu <github@mentor.dev.br>
* @license https://opensource.org/licenses/MIT MIT License
*/
$paths = [
__FILE__,
__DIR__,
];
$header = file_get_contents(__DIR__ . '/.docheader');
return PhpCsFixer::create($paths, $header);