Completed
Push — master ( cba8c1...0e1bf9 )
by Ivannis Suárez
03:36
created
Tests/Units/EnumTests.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,11 +54,11 @@  discard block
 block discarded – undo
54 54
         $this->equalityTest(DefaultEnumFixture::__DEFAULT(), DefaultEnumFixture::BAR());
55 55
 
56 56
         $this
57
-            ->exception(function () {
57
+            ->exception(function() {
58 58
                 BadDefaultEnumFixture::__DEFAULT();
59 59
             })
60 60
                 ->isInstanceof(\UnexpectedValueException::class)
61
-            ->exception(function () {
61
+            ->exception(function() {
62 62
                 BadDefaultEnumFixture::BAZ();
63 63
             })
64 64
                 ->isInstanceof(\BadMethodCallException::class)
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         $this->equalityTest(EnumFixture::ensure(null, EnumFixture::BAR()), EnumFixture::BAR());
77 77
 
78 78
         $this
79
-            ->exception(function () {
79
+            ->exception(function() {
80 80
                 EnumFixture::ensure(DefaultEnumFixture::FOO());
81 81
             })
82 82
                 ->isInstanceof(\InvalidArgumentException::class)
Please login to merge, or discard this patch.