Passed
Push — master ( e6c19f...8c3c69 )
by Kirill
05:24 queued 01:58
created
src/Exceptions/tests/HandlerTest.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
     public function testHtmlHandlerDefaultBasic(): void
115 115
     {
116
-        $handler = new HtmlHandler(HtmlHandler::DEFAULT);
116
+        $handler = new HtmlHandler(HtmlHandler::default);
117 117
 
118 118
         $result = $handler->renderException(new Error(
119 119
             'message',
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     {
167 167
         $this->markTestSkipped('Temporary skipped (x2)');
168 168
 
169
-        $handler = new HtmlHandler(HtmlHandler::DEFAULT);
169
+        $handler = new HtmlHandler(HtmlHandler::default);
170 170
 
171 171
         $result = $handler->renderException(new Error(
172 172
             'message',
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 
246 246
     public function testHtmlHandlerStacktrace(): void
247 247
     {
248
-        $handler = new HtmlHandler(HtmlHandler::DEFAULT);
248
+        $handler = new HtmlHandler(HtmlHandler::default);
249 249
 
250 250
         try {
251 251
             $this->makeException();
Please login to merge, or discard this patch.