14 lines
268 B
PHP
14 lines
268 B
PHP
|
<?php
|
||
|
class AdminAntadisSimulatorDetailController extends ModuleAdminController
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
// Call of the parent constructor method
|
||
|
parent::__construct();
|
||
|
}
|
||
|
|
||
|
public function renderList()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|