Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'git/namespace-pass3' into git/development-2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed May 27, 2010
4 parents cd1fe4f + eaf6928 + d5e5d2e + 24e9ca0 commit 21e1e5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ClassNotFoundException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
require_once __DIR__ . '/Exception.php';

class ClassNotFoundException
extends \Exception
extends \Zend\Exception
implements Exception
{
}
2 changes: 1 addition & 1 deletion src/PluginLoader/PluginLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ public function load($name, $throwExceptions = true)
foreach ($registry as $prefix => $paths) {
$className = $prefix . $name;

if (class_exists($className, false)) {
if (class_exists($className, true)) {
$found = true;
break;
}
Expand Down

0 comments on commit 21e1e5f

Please sign in to comment.