Skip to content

Commit

Permalink
Merge pull request #14 from mikey179/patch-1
Browse files Browse the repository at this point in the history
fix access to array element by using the one that was checked for
  • Loading branch information
clue committed Oct 26, 2013
2 parents 41bed00 + 559491b commit cf5e31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Clue/PharComposer/Bundler/Explicit.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected function bundle()
}

if (isset($autoload['files'])) {
foreach($autoload['classmap'] as $path) {
foreach($autoload['files'] as $path) {
$this->addFile($this->package->getAbsolutePath($path));
}
}
Expand Down

0 comments on commit cf5e31d

Please sign in to comment.