Skip to content

Commit

Permalink
Remove redundant leading backslashes
Browse files Browse the repository at this point in the history
  • Loading branch information
DQNEO authored Aug 24, 2019
1 parent 2d7be5c commit e50f69c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Psr/Log/Test/LoggerInterfaceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Psr\Log\Test;

if (!class_exists('\\PHPUnit\\Framework\\TestCase', true)) {
class_alias('\\PHPUnit_Framework_TestCase', '\\PHPUnit\\Framework\\TestCase');
if (!class_exists('PHPUnit\\Framework\\TestCase', true)) {
class_alias('PHPUnit_Framework_TestCase', 'PHPUnit\\Framework\\TestCase');
}

use Psr\Log\LoggerInterface;
Expand Down

0 comments on commit e50f69c

Please sign in to comment.