Add newline after actions in controller template

This commit is contained in:
Bryan Crowe 2014-04-13 21:56:27 -04:00
parent d4ae2b0b88
commit f7cc0c1802

View file

@ -74,7 +74,7 @@ class <?php echo $controllerName; ?>Controller extends <?php echo $plugin; ?>App
echo ");\n\n"; echo ");\n\n";
endif; endif;
echo trim($actions); echo trim($actions) . "\n";
endif; ?> endif; ?>
} }