From da926f134a62ad950056f3b0e42d000ccd5f8e7f Mon Sep 17 00:00:00 2001 From: Phil Tyler Date: Wed, 7 Aug 2024 13:38:18 -0700 Subject: [PATCH] drop namespace file --- php/pantheon/checks/plugins.php | 2 -- php/pantheon/checks/themes.php | 2 -- 2 files changed, 4 deletions(-) diff --git a/php/pantheon/checks/plugins.php b/php/pantheon/checks/plugins.php index c83ecf3..d2733d0 100644 --- a/php/pantheon/checks/plugins.php +++ b/php/pantheon/checks/plugins.php @@ -11,8 +11,6 @@ class Plugins extends Checkimplementation { public $check_all_plugins; public function __construct($check_all_plugins) { - require_once __DIR__ . '/namespace.php'; - $this->check_all_plugins = $check_all_plugins; } diff --git a/php/pantheon/checks/themes.php b/php/pantheon/checks/themes.php index 074ffd8..7381236 100644 --- a/php/pantheon/checks/themes.php +++ b/php/pantheon/checks/themes.php @@ -12,8 +12,6 @@ class Themes extends Checkimplementation { public $alerts = array(); public function __construct($check_all_themes) { - require_once __DIR__ . '/namespace.php'; - $this->check_all_themes = $check_all_themes; }