shoppingmallv2/app/Libraries/Adapter/Adapter.php
최준흠git config git config --helpgit config --global user.name 최준흠 f592b90073 shoppingmallv2 init...
2023-08-10 23:27:36 +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();
}