shoppingmallv2/app/Libraries/Adapter/Payment/Payment.php
최준흠git config git config --helpgit config --global user.name 최준흠 f592b90073 shoppingmallv2 init...
2023-08-10 23:27:36 +09:00

19 lines
384 B
PHP

<?php
namespace App\Libraries\Adapter\Payment;
use App\Libraries\Adapter\Adapter;
abstract class Payment extends Adapter
{
protected function __construct($debug = false)
{
parent::__construct($debug);
}
abstract protected function execute_process(): object;
final public function execute(): object
{
return $this->execute_process();
}
}