.php-cs-fixer.php
<?php declare(strict_types=1);
/*
* Copyright (c) Cristiano Cinotti 2021.
*
* This file is part of siad-pdf-compressor package, release under the APACHE-2 license.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
$config = new Susina\CodingStandard\Config();
$config->getFinder()
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests')
;
return $config;