| Total Complexity | 4 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class ConsoleScaffoldController extends ScaffoldController { |
||
| 6 | private $activeDir; |
||
| 7 | |||
| 8 | public function __construct($activeDir) { |
||
| 9 | $this->activeDir = $activeDir; |
||
| 10 | } |
||
| 11 | |||
| 12 | protected function storeControllerNameInSession($controller) { |
||
| 13 | } |
||
| 14 | |||
| 15 | protected function showSimpleMessage($content, $type, $title = null, $icon = "info", $timeout = NULL, $staticName = null) { |
||
| 16 | return strip_tags ( $content ); |
||
| 17 | } |
||
| 18 | |||
| 19 | protected function getTemplateDir() { |
||
| 21 | } |
||
| 22 | } |
||
| 23 | |||
| 24 |