15 lines
267 B
PHP
15 lines
267 B
PHP
<?php
|
|
|
|
namespace lib\Controllers\DBMS\Client;
|
|
|
|
use lib\Services\ClientService;
|
|
|
|
class PaymentController extends ClientController
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->getView()->setPath('payment');
|
|
} //
|
|
} //Class
|