dbms_primeidc/extdbms/lib/Core/Service.php
2025-03-26 19:23:54 +09:00

18 lines
301 B
PHP

<?php
namespace lib\Core;
abstract class Service
{
private $_debug = false;
protected function __construct() {} //
final public function setDebug($debug)
{
$this->_debug = $debug;
}
final public function getDebug()
{
return $this->_debug;
}
} //Class