Added workflow PHP

This commit is contained in:
Progi1984
2021-05-28 09:44:20 +02:00
parent 57fcfb7fa4
commit 844ae6d5f5
14 changed files with 217 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
$config = new PrestaShop\CodingStandards\CsFixer\Config();
$config
->setUsingCache(true)
->getFinder()
->in(__DIR__)
->exclude('vendor');
return $config;