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

Commit

Permalink
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 8 deletions.
3 changes: 2 additions & 1 deletion src/Exception/DomainException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
require_once __DIR__ . '/ExceptionInterface.php';

class DomainException extends \DomainException implements ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
namespace Zend\Loader\Exception;

interface ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@

class InvalidArgumentException extends \InvalidArgumentException implements
ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/InvalidPathException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
require_once __DIR__ . '/ExceptionInterface.php';

class InvalidPathException extends \Exception implements ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/MissingResourceNamespaceException.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@

class MissingResourceNamespaceException extends \Exception implements
ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
require_once __DIR__ . '/ExceptionInterface.php';

class RuntimeException extends \RuntimeException implements ExceptionInterface
{}
{
}
3 changes: 2 additions & 1 deletion src/Exception/SecurityException.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@
require_once __DIR__ . '/DomainException.php';

class SecurityException extends DomainException
{}
{
}
1 change: 0 additions & 1 deletion test/ClassMapAutoloaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,5 +179,4 @@ public function testCanLoadClassMapFromPhar()
$test = $this->loader->getAutoloadMap();
$this->assertEquals(1, count($test));
}

}

0 comments on commit 0b8c610

Please sign in to comment.