Completed
Pull Request — master (#22)
by
unknown
01:26
created
tests/DontTest/DontDeserialiseTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public function testWillThrowOnSerialisationAttempt($className) : void
25 25
     {
26 26
         $this->expectException(NonDeserialisableObject::class);
27
-        if($className === 'DontTestAsset\\NonDeserialisableImplementingSerializable'){
27
+        if ($className === 'DontTestAsset\\NonDeserialisableImplementingSerializable') {
28 28
             unserialize(\sprintf('C:55:"DontTestAsset\NonDeserialisableImplementingSerializable":6:{a:0:{}}'));
29 29
         } else {
30 30
             unserialize(\sprintf('O:%d:"%s":0:{}', \strlen($className), $className));
Please login to merge, or discard this patch.