Skip to content

Commit

Permalink
Use PSR-4 for all classes (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm authored Feb 28, 2020
1 parent 5628725 commit e1cb6ec
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
18 changes: 18 additions & 0 deletions Psr/Log/Test/DummyTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace Psr\Log\Test;

/**
* This class is internal and does not follow the BC promise.
*
* Do NOT use this class in any way.
*
* @internal
*/
class DummyTest
{
public function __toString()
{
return 'DummyTest';
}
}
8 changes: 0 additions & 8 deletions Psr/Log/Test/LoggerInterfaceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,3 @@ public function testContextExceptionKeyCanBeExceptionOrOtherValues()
$this->assertEquals($expected, $this->getLogs());
}
}

class DummyTest
{
public function __toString()
{
return 'DummyTest';
}
}

0 comments on commit e1cb6ec

Please sign in to comment.