From 0f0ba034491d2d01dcf328ed681564fb7b0a15e4 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Mon, 28 Nov 2022 21:35:41 +0100 Subject: [PATCH] remove constructor and class vars from abstract class --- inc/inc.ClassAuthentication.php | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/inc/inc.ClassAuthentication.php b/inc/inc.ClassAuthentication.php index 29e57ed20..d9a66315b 100644 --- a/inc/inc.ClassAuthentication.php +++ b/inc/inc.ClassAuthentication.php @@ -24,34 +24,6 @@ */ abstract class SeedDMS_Authentication { - /** - * DMS object - * - * @var SeedDMS_Core_DMS - * @access protected - */ - protected $dms; - - /** - * DMS settings - * - * @var Settings - * @access protected - */ - protected $settings; - - /** - * Constructor - * - * @param SeedDMS_Core_DMS $dms DMS object - * @param Settings $settings DMS settings - */ - function __construct($dms, $settings) /* {{{ */ - { - $this->dms = $dms; - $this->settings = $settings; - } /* }}} */ - /** * Do Authentication *