-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename unserialize exception #4
Conversation
@@ -1,11 +1,11 @@ | |||
<?php |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this test class should be renamed according to changes
@@ -1,11 +1,11 @@ | |||
<?php | |||
|
|||
declare(strict_types=1); | |||
declare(strict_types = 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
your IDE likely messed up the alignment here
@@ -5,7 +5,7 @@ | |||
namespace DontTest; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here - file/class to be renamed
@@ -5,7 +5,7 @@ | |||
namespace DontTest; | |||
|
|||
use Dont\DontDeserialise; | |||
use Dont\Exception\NonDeserialisableObject; | |||
use Dont\Exception\ShouldNotUnserializeObject; | |||
|
|||
/** | |||
* @covers \Dont\DontDeserialise |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage annotations need adjustment
|
||
namespace DontTest\Exception; | ||
|
||
use Dont\Exception\ExceptionInterface; | ||
use Dont\Exception\NonDeserialisableObject; | ||
use Dont\Exception\ShouldNotUnserializeObject; | ||
use Dont\Exception\TypeError; | ||
use LogicException; | ||
use stdClass; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage annotations will need adjustments in here too
I have no idea why I put myself through this, let me know what you think @Ocramius and I will update the
serialize
exception to match once it's merged (if that ever happens).