summaryrefslogtreecommitdiff
path: root/app/Auth/Base.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-10-18 18:13:54 -0400
committerFrederic Guillot <fred@kanboard.net>2015-10-18 18:13:54 -0400
commit43cffe282868ff5c32804c34b31baaa1317f5a8e (patch)
tree36f4514e54c28a3e6e7b3b90683b5bed14c49c4a /app/Auth/Base.php
parent2f3563714b4f293516af46a23779cb24327be363 (diff)
Remove useless class and add new plugin hooks
Diffstat (limited to 'app/Auth/Base.php')
-rw-r--r--app/Auth/Base.php34
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'];
- }
-}