mirror of
https://github.com/filp/whoops.git
synced 2026-09-12 02:36:20 +00:00
CS updates (use statements)
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
*/
|
||||
|
||||
namespace Damnit\Exception;
|
||||
use \InvalidArgumentException;
|
||||
use InvalidArgumentException;
|
||||
|
||||
class Frame
|
||||
{
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
|
||||
namespace Damnit\Exception;
|
||||
use Damnit\Exception\Frame;
|
||||
use \Iterator;
|
||||
use \Countable;
|
||||
use Iterator;
|
||||
use Countable;
|
||||
|
||||
/**
|
||||
* Mostly just implements iterator methods, the only
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Damnit\Exception;
|
||||
use Damnit\Exception\FrameIterator;
|
||||
use \Exception;
|
||||
use Exception;
|
||||
|
||||
class Inspector
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Damnit\Handler;
|
||||
use Damnit\Handler\HandlerInterface;
|
||||
use Damnit\Exception\Inspector;
|
||||
use Damnit\Run;
|
||||
use \Exception;
|
||||
use Exception;
|
||||
|
||||
/**
|
||||
* Base handler, can be used as a simple text
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Damnit\Handler;
|
||||
|
||||
use Damnit\Exception\Inspector;
|
||||
use Damnit\Run;
|
||||
use \Exception;
|
||||
use Exception;
|
||||
|
||||
interface HandlerInterface
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
namespace Damnit\Handler;
|
||||
use Damnit\Handler\Handler;
|
||||
use \InvalidArgumentException;
|
||||
use InvalidArgumentException;
|
||||
|
||||
class PrettyPage extends Handler
|
||||
{
|
||||
|
||||
+3
-3
@@ -10,9 +10,9 @@ use Damnit\Handler\HandlerInterface;
|
||||
use Damnit\Handler\Handler;
|
||||
use Damnit\Handler\CallbackHandler;
|
||||
use Damnit\Exception\Inspector;
|
||||
use \InvalidArgumentException;
|
||||
use \ErrorException;
|
||||
use \Exception;
|
||||
use InvalidArgumentException;
|
||||
use ErrorException;
|
||||
use Exception;
|
||||
|
||||
class Run
|
||||
{
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
namespace Damnit\Exception;
|
||||
use Damnit\Exception\Frame;
|
||||
use Damnit\TestCase;
|
||||
use \Mockery as m;
|
||||
use Mockery as m;
|
||||
|
||||
class FrameTest extends TestCase
|
||||
{
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
namespace Damnit\Exception;
|
||||
use Damnit\Exception\Inspector;
|
||||
use Damnit\TestCase;
|
||||
use \RuntimeException;
|
||||
use \Exception;
|
||||
use RuntimeException;
|
||||
use Exception;
|
||||
|
||||
class InspectorTest extends TestCase
|
||||
{
|
||||
|
||||
@@ -8,9 +8,9 @@ namespace Damnit;
|
||||
use Damnit\TestCase;
|
||||
use Damnit\Run;
|
||||
use Damnit\Handler\Handler;
|
||||
use \RuntimeException;
|
||||
use \ArrayObject;
|
||||
use \Mockery as m;
|
||||
use RuntimeException;
|
||||
use ArrayObject;
|
||||
use Mockery as m;
|
||||
|
||||
class RunTest extends TestCase
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
*/
|
||||
|
||||
namespace Damnit;
|
||||
use \Mockery as m;
|
||||
use Mockery as m;
|
||||
|
||||
class TestCase extends \PHPUnit_Framework_TestCase
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user