shoppingmallv2/app/Libraries/Adapter/Payment/Payment.php
최준흠git config git config --helpgit config --global user.name 최준흠 b4de105a7d shoppingmallv2 init...
2023-08-10 22:26:56 +09:00

14 lines
242 B
PHP

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