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

Commit

Permalink
Fix inheritance issue
Browse files Browse the repository at this point in the history
- Storage\Part\Exception was extending Storage\Part\Exception -- hence,
  fatal error
- Modified to extend Storage\Exception
- Reported by Sebastian Bergmann
  • Loading branch information
weierophinney committed Jan 16, 2012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Storage/Part/Exception.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
namespace Zend\Mail\Storage\Part;

use Zend\Mail\Storage\Part;
use Zend\Mail\Storage;

/**
* @category Zend
Expand All @@ -34,6 +34,6 @@
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
interface Exception extends Part\Exception
interface Exception extends Storage\Exception
{
}

0 comments on commit 677bd85

Please sign in to comment.