From 819677c9025471c8951ead7905bcde2e3ed635c5 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 24 Apr 2019 13:50:01 +0200 Subject: Use self references and fix class naming --- src/Application.php | 2 +- src/Models/LogEntry.php | 2 +- tests/Unit/Container/ServiceProviderTest.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Application.php b/src/Application.php index 02518423..ac69c20a 100644 --- a/src/Application.php +++ b/src/Application.php @@ -50,7 +50,7 @@ class Application extends Container $this->instance(Container::class, $this); $this->instance(Application::class, $this); $this->instance(IlluminateContainer::class, $this); - $this->bind(ContainerInterface::class, Application::class); + $this->bind(ContainerInterface::class, self::class); } /** diff --git a/src/Models/LogEntry.php b/src/Models/LogEntry.php index 0018841a..db427eb9 100644 --- a/src/Models/LogEntry.php +++ b/src/Models/LogEntry.php @@ -40,7 +40,7 @@ class LogEntry extends BaseModel */ public static function filter($keyword = null) { - $query = LogEntry::query() + $query = self::query() ->select() ->orderByDesc('created_at') ->orderByDesc('id') diff --git a/tests/Unit/Container/ServiceProviderTest.php b/tests/Unit/Container/ServiceProviderTest.php index b817e3bb..14b631c0 100644 --- a/tests/Unit/Container/ServiceProviderTest.php +++ b/tests/Unit/Container/ServiceProviderTest.php @@ -4,9 +4,9 @@ namespace Engelsystem\Test\Unit\Container; use Engelsystem\Container\ServiceProvider; use Engelsystem\Test\Unit\Container\Stub\ServiceProviderImplementation; -use Engelsystem\Test\Unit\ServiceProviderTest; +use Engelsystem\Test\Unit\ServiceProviderTest as ServiceProviderTestCase; -class ConfigServiceProviderTest extends ServiceProviderTest +class ServiceProviderTest extends ServiceProviderTestCase { /** * @covers \Engelsystem\Container\ServiceProvider::__construct -- cgit v1.2.3-54-g00ecf