diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-18 18:13:54 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-18 18:13:54 -0400 |
commit | 43cffe282868ff5c32804c34b31baaa1317f5a8e (patch) | |
tree | 36f4514e54c28a3e6e7b3b90683b5bed14c49c4a /app/Auth/Base.php | |
parent | 2f3563714b4f293516af46a23779cb24327be363 (diff) |
Remove useless class and add new plugin hooks
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']; - } -} |