vhost/app/Libraries/Adapter/Adapter.php
2024-05-07 13:20:45 +09:00

16 lines
321 B
PHP

<?php
namespace App\Libraries\Adapter;
abstract class Adapter
{
protected $_debug = false;
protected $_session = null;
protected function __construct($debug = false)
{
$this->_debug = $debug;
$this->_session = \Config\Services::session();
}
abstract public function execute();
}