9 lines
125 B
PHP
9 lines
125 B
PHP
|
<?php
|
||
|
|
||
|
namespace Application\Controller;
|
||
|
|
||
|
class TestDefaultCallableHalt
|
||
|
{
|
||
|
public $halt = true;
|
||
|
public function index() {}
|
||
|
}
|