summaryrefslogtreecommitdiff
path: root/app/Model/Base.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Model/Base.php')
-rw-r--r--app/Model/Base.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/app/Model/Base.php b/app/Model/Base.php
index e700f326..3ee60844 100644
--- a/app/Model/Base.php
+++ b/app/Model/Base.php
@@ -13,26 +13,6 @@ use Pimple\Container;
abstract class Base extends \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'];
- }
-
- /**
* Save a record in the database
*
* @access public