From b0a6fcdee23c56e204c4512f7bcf8854da3dd465 Mon Sep 17 00:00:00 2001 From: Evan Mattson Date: Sat, 16 May 2020 17:43:45 +0300 Subject: [PATCH] Remove conditional + new use outside of class. --- src/Autoloader.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Autoloader.php b/src/Autoloader.php index 972b005..d89976c 100644 --- a/src/Autoloader.php +++ b/src/Autoloader.php @@ -11,10 +11,6 @@ namespace Roots\Bedrock; -if (!is_blog_installed()) { - return; -} - /** * Class Autoloader * @package Roots\Bedrock @@ -195,5 +191,3 @@ private function countPlugins() return $this->count; } } - -new Autoloader();