blob: 66736db37b6da7d31b7d3875d227bf3fe0dd3b08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
diff -up ./bin/phpcbf.rpm ./bin/phpcbf
--- ./bin/phpcbf.rpm 2023-12-11 09:46:17.920584703 +0100
+++ ./bin/phpcbf 2023-12-11 09:46:27.469951577 +0100
@@ -8,11 +8,7 @@
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
-if (is_file(__DIR__.'/../autoload.php') === true) {
- include_once __DIR__.'/../autoload.php';
-} else {
- include_once 'PHP/CodeSniffer/autoload.php';
-}
+include_once '/usr/share/pear/PHP/CodeSniffer/autoload.php';
$runner = new PHP_CodeSniffer\Runner();
$exitCode = $runner->runPHPCBF();
diff -up ./bin/phpcs.rpm ./bin/phpcs
--- ./bin/phpcs.rpm 2023-12-11 09:45:10.918010545 +0100
+++ ./bin/phpcs 2023-12-11 09:46:03.104015468 +0100
@@ -8,11 +8,7 @@
* @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
*/
-if (is_file(__DIR__.'/../autoload.php') === true) {
- include_once __DIR__.'/../autoload.php';
-} else {
- include_once 'PHP/CodeSniffer/autoload.php';
-}
+include_once '/usr/share/pear/PHP/CodeSniffer/autoload.php';
$runner = new PHP_CodeSniffer\Runner();
$exitCode = $runner->runPHPCS();
|