49 lines
1.7 KiB
Diff
49 lines
1.7 KiB
Diff
diff -up ./php-cs-fixer.rpm ./php-cs-fixer
|
|
--- ./php-cs-fixer.rpm 2017-10-02 16:04:28.744937463 +0200
|
|
+++ ./php-cs-fixer 2017-10-02 16:04:55.577092013 +0200
|
|
@@ -39,18 +39,7 @@ set_error_handler(function ($severity, $
|
|
}
|
|
});
|
|
|
|
-try {
|
|
- // Maybe this file is used as phar-stub? Let's try!
|
|
- Phar::mapPhar('php-cs-fixer.phar');
|
|
- require_once 'phar://php-cs-fixer.phar/vendor/autoload.php';
|
|
-} catch (PharException $e) {
|
|
- // OK, it's not, let give Composer autoloader a try!
|
|
- if (file_exists($a = __DIR__.'/../../autoload.php')) {
|
|
- require_once $a;
|
|
- } else {
|
|
- require_once __DIR__.'/vendor/autoload.php';
|
|
- }
|
|
-}
|
|
+require_once '/usr/share/php/PhpCsFixer/autoload.php';
|
|
|
|
use PhpCsFixer\Console\Application;
|
|
|
|
diff -up ./src/Console/Command/HelpCommand.php.rpm ./src/Console/Command/HelpCommand.php
|
|
--- ./src/Console/Command/HelpCommand.php.rpm 2017-10-02 16:03:56.000000000 +0200
|
|
+++ ./src/Console/Command/HelpCommand.php 2017-10-02 16:04:28.744937463 +0200
|
|
@@ -345,6 +345,8 @@ EOF
|
|
{
|
|
static $version = null;
|
|
|
|
+ return Application::VERSION;
|
|
+
|
|
if (null !== $version) {
|
|
return $version;
|
|
}
|
|
diff -up ./tests/AutoReview/ProjectCodeTest.php.rpm ./tests/AutoReview/ProjectCodeTest.php
|
|
--- ./tests/AutoReview/ProjectCodeTest.php.rpm 2017-10-02 16:03:56.000000000 +0200
|
|
+++ ./tests/AutoReview/ProjectCodeTest.php 2017-10-02 16:04:28.745937469 +0200
|
|
@@ -383,8 +383,10 @@ final class ProjectCodeTest extends Test
|
|
->files()
|
|
->name('*.php')
|
|
->in(__DIR__.'/../../src')
|
|
+ ->notName('autoload.php')
|
|
->exclude([
|
|
'Resources',
|
|
+ 'tests',
|
|
])
|
|
;
|
|
|