19 lines
390 B
PHP
19 lines
390 B
PHP
<?php
|
|
|
|
namespace App\Services\Customer;
|
|
|
|
use App\Services\CommonService;
|
|
use CodeIgniter\HTTP\IncomingRequest;
|
|
|
|
abstract class CustomerService extends CommonService
|
|
{
|
|
public function __construct(?IncomingRequest $request = null)
|
|
{
|
|
parent::__construct($request);
|
|
}
|
|
public function getClassName(): string
|
|
{
|
|
return "Customer" . DIRECTORY_SEPARATOR;
|
|
}
|
|
}
|