![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/lightsaml/symfony-bridge/ |
<?php $finder = PhpCsFixer\Finder::create() ->in('src') ; $header = <<<EOT This file is part of the LightSAML Symfony Bridge Bundle package. (c) Milos Tomic <[email protected]> This source file is subject to the MIT license that is bundled with this source code in the file LICENSE. EOT; return PhpCsFixer\Config::create() ->setRules(array( '@Symfony' => true, 'simplified_null_return' => false, 'phpdoc_no_empty_return' => false, 'no_mixed_echo_print' => ['use' => 'print'], 'header_comment' => ['header' => $header], )) ->setUsingCache(false) ->setFinder($finder) ;