summaryrefslogtreecommitdiffstats
path: root/php-bartlett-PHP-Reflect-3.0.0-fix.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2015-02-26 13:55:44 +0100
committerRemi Collet <fedora@famillecollet.com>2015-02-26 13:55:44 +0100
commitfdb6088d94ebff764bdfb67c70b57bf55400ca8d (patch)
tree55740a02f85e5d557ccef85956232564c9d0e1df /php-bartlett-PHP-Reflect-3.0.0-fix.patch
parent290217119ca11910b9065813b715ebb78089f16a (diff)
php-bartlett-PHP-Reflect: 3.0.0 beta3
Diffstat (limited to 'php-bartlett-PHP-Reflect-3.0.0-fix.patch')
-rw-r--r--php-bartlett-PHP-Reflect-3.0.0-fix.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/php-bartlett-PHP-Reflect-3.0.0-fix.patch b/php-bartlett-PHP-Reflect-3.0.0-fix.patch
deleted file mode 100644
index f3a23cd..0000000
--- a/php-bartlett-PHP-Reflect-3.0.0-fix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff -up src/Bartlett/Reflect/Output/Analyser.php.orig src/Bartlett/Reflect/Output/Analyser.php
---- src/Bartlett/Reflect/Output/Analyser.php.orig 2015-02-23 19:34:38.068134005 +0100
-+++ src/Bartlett/Reflect/Output/Analyser.php 2015-02-23 19:35:15.053282071 +0100
-@@ -95,12 +95,12 @@ class Analyser extends OutputFormatter
- continue;
- }
- $baseNamespace = str_replace(
-- 'Analyser\\' . basename($analyserName),
-+ 'Analyser\\' . basename(str_replace('\\', '/', $analyserName)),
- '',
- $analyserName
- );
- $outputFormatter = $baseNamespace . 'Console\Formatter\\' .
-- substr(basename($analyserName), 0, -8) . 'OutputFormatter';
-+ substr(basename(str_replace('\\', '/', $analyserName)), 0, -8) . 'OutputFormatter';
-
- if (class_exists($outputFormatter)) {
- $obj = new $outputFormatter();