diff options
Diffstat (limited to 'app/Auth/Base.php')
-rw-r--r-- | app/Auth/Base.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/app/Auth/Base.php b/app/Auth/Base.php deleted file mode 100644 index a354c200..00000000 --- a/app/Auth/Base.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -namespace Kanboard\Auth; - -use Pimple\Container; - -/** - * Base auth class - * - * @package auth - * @author Frederic Guillot - */ -abstract class Base extends \Kanboard\Core\Base -{ - /** - * Database instance - * - * @access protected - * @var \PicoDb\Database - */ - protected $db; - - /** - * Constructor - * - * @access public - * @param \Pimple\Container $container - */ - public function __construct(Container $container) - { - $this->container = $container; - $this->db = $this->container['db']; - } -} |