Move all files to 2019/

This commit is contained in:
Oliver Davies 2025-09-29 22:25:20 +01:00
parent f59a1843de
commit 0b536af737
94 changed files with 0 additions and 0 deletions

14
2019/.php_cs.dist Normal file
View file

@ -0,0 +1,14 @@
<?php
use PhpCsFixer\Config;
use Symfony\Component\Finder\Finder;
$finder = new Finder();
$finder->files()->in('src')->in('src');
return Config::create()
->setRules([
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
])
->setFinder($finder);