Skip to content

Commit

Permalink
Refactor library/Mockery/Exception.php (#1366)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
  • Loading branch information
ghostwriter committed Feb 29, 2024
2 parents 9dc1299 + 21a5cb7 commit 1928a00
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion library/Mockery/Exception.php
Expand Up @@ -5,13 +5,15 @@
*
* @copyright https://github.com/mockery/mockery/blob/HEAD/COPYRIGHT.md
* @license https://github.com/mockery/mockery/blob/HEAD/LICENSE BSD 3-Clause License
*
* @link https://github.com/mockery/mockery for the canonical source repository
*/

namespace Mockery;

use Mockery\Exception\MockeryExceptionInterface;
use UnexpectedValueException;

class Exception extends \UnexpectedValueException implements MockeryExceptionInterface
class Exception extends UnexpectedValueException implements MockeryExceptionInterface
{
}

0 comments on commit 1928a00

Please sign in to comment.