summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2017-05-04 08:05:12 -0400
committerMichael Orlitzky <mjo@gentoo.org>2017-05-04 08:27:57 -0400
commit7bed29d1e37576754311964464ded57ef9b40ed4 (patch)
treeb1295bc0fd166c5df54111dacae0397a08edbf13 /dev-php/sebastian-diff/files
parentdev-util/drone: Update config and user home (diff)
downloadgentoo-7bed29d1e37576754311964464ded57ef9b40ed4.tar.gz
gentoo-7bed29d1e37576754311964464ded57ef9b40ed4.tar.bz2
gentoo-7bed29d1e37576754311964464ded57ef9b40ed4.zip
dev-php/sebastian-diff: new revision to fix autoloader class names.
Two of the class names in this package's autoload.php were in error: they were named after the filename, instead of the classes that they actually contain (perhaps this is a bug upstream?). In any case, the PHPUnit test suite for symfony-finder was failing looking for a class that it couldn't find. The new revision should force users to install the updated autoload.php. Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-php/sebastian-diff/files')
-rw-r--r--dev-php/sebastian-diff/files/autoload.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-php/sebastian-diff/files/autoload.php b/dev-php/sebastian-diff/files/autoload.php
index 40925e7dd6f5..5b72dc303318 100644
--- a/dev-php/sebastian-diff/files/autoload.php
+++ b/dev-php/sebastian-diff/files/autoload.php
@@ -13,8 +13,8 @@ if (!class_exists('Fedora\\Autoloader\\Autoload', false)) {
'sebastianbergmann\diff\line' => '/Line.php',
'sebastianbergmann\diff\parser' => '/Parser.php',
'sebastianbergmann\diff\lcs\longestcommonsubsequence' => '/LCS/LongestCommonSubsequence.php',
- 'sebastianbergmann\diff\lcs\memoryefficientlongestcommonsubsequenceimplementation' => '/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
- 'sebastianbergmann\diff\lcs\timeefficientlongestcommonsubsequenceimplementation' => '/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
+ 'sebastianbergmann\diff\lcs\memoryefficientimplementation' => '/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
+ 'sebastianbergmann\diff\lcs\timeefficientimplementation' => '/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
),
__DIR__
);