/home/techb158/ileadtechnology.com/vendor/bigbluebutton/bigbluebutton-api-php
NameSizeModeActions
src/-0755rm
tests/-0755rm
.gitignore1420644editdlrm
.php-cs-fixer.php17870644editdlrm
.travis.yml12260644editdlrm
codeception.yml2820644editdlrm
composer.json9770644editdlrm
LICENSE76510644editdlrm
phpunit.xml.dist11280644editdlrm
README.md33260644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/bigbluebutton/bigbluebutton-api-php/.php-cs-fixer.php (1787B)
. EOF; $finder = PhpCsFixer\Finder::create() ->files() ->name(['*.php']) ->in(__DIR__ . '/src') ->in(__DIR__ . '/tests'); $config = new PhpCsFixer\Config(); $config ->setRiskyAllowed(true) ->setRules([ '@PhpCsFixer' => true, 'general_phpdoc_annotation_remove' => ['annotations' => ['expectedDeprecation']], // one should use PHPUnit built-in method instead 'header_comment' => ['header' => $header], 'concat_space' => ['spacing' => 'one'], 'function_declaration' => ['closure_function_spacing' => 'none'], 'constant_case' => ['case' => 'lower'], 'single_quote' => true, 'mb_str_functions' => true, 'array_syntax' => ['syntax' => 'short'], 'binary_operator_spaces' => ['operators' => ['=>' => 'align_single_space_minimal', '=' => 'align_single_space_minimal'] ], ]) ->setFinder($finder); return $config;