From e1cb6eca27ccfd46567a2837eeba62bc5fecdee2 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Fri, 28 Feb 2020 09:38:25 +0100 Subject: [PATCH] Use PSR-4 for all classes (#69) --- Psr/Log/Test/DummyTest.php | 18 ++++++++++++++++++ Psr/Log/Test/LoggerInterfaceTest.php | 8 -------- 2 files changed, 18 insertions(+), 8 deletions(-) create mode 100644 Psr/Log/Test/DummyTest.php diff --git a/Psr/Log/Test/DummyTest.php b/Psr/Log/Test/DummyTest.php new file mode 100644 index 0000000..9638c11 --- /dev/null +++ b/Psr/Log/Test/DummyTest.php @@ -0,0 +1,18 @@ +assertEquals($expected, $this->getLogs()); } } - -class DummyTest -{ - public function __toString() - { - return 'DummyTest'; - } -}