diff --git a/Config/Schema/empty b/Config/Schema/empty deleted file mode 100644 index e69de29b..00000000 diff --git a/Console/Command/NetCommonsAppShell.php b/Console/Command/NetCommonsAppShell.php new file mode 100644 index 00000000..06150564 --- /dev/null +++ b/Console/Command/NetCommonsAppShell.php @@ -0,0 +1,30 @@ + 1. - * When debug < 1 a CakeException will render 404 or 500 errors. If an uncaught exception is thrown - * and it is a type that ExceptionHandler does not know about it will be treated as a 500 error. - * - * ### Implementing application specific exception rendering - * - * You can implement application specific exception handling in one of a few ways: - * - * - Create a AppController::appError(); - * - Create a subclass of YAExceptionRenderer and configure it to be the `Exception.renderer` - * - * #### Using AppController::appError(); - * - * This controller method is called instead of the default exception handling. It receives the - * thrown exception as its only argument. You should implement your error handling in that method. - * - * #### Using a subclass of YAExceptionRenderer - * - * Using a subclass of YAExceptionRenderer gives you full control over how Exceptions are rendered, you - * can configure your class in your core.php, with `Configure::write('Exception.renderer', 'MyClass');` - * You should place any custom exception renderers in `app/Lib/Error`. - * - * @package NetCommons\NetCommons\Error - */ -class YAExceptionRenderer extends NetCommonsExceptionRenderer { - -} diff --git a/Lib/empty b/Lib/empty deleted file mode 100644 index e69de29b..00000000 diff --git a/Model/Datasource/empty b/Model/Datasource/empty deleted file mode 100644 index e69de29b..00000000 diff --git a/Test/Case/Model/Behavior/empty b/Test/Case/Model/Behavior/empty deleted file mode 100644 index e69de29b..00000000 diff --git a/Test/Fixture/empty b/Test/Fixture/empty deleted file mode 100644 index e69de29b..00000000 diff --git a/Vendor/empty b/Vendor/empty deleted file mode 100644 index e69de29b..00000000 diff --git a/View/Helper/NetCommonsAppHelper.php b/View/Helper/NetCommonsAppHelper.php new file mode 100644 index 00000000..de85d9a9 --- /dev/null +++ b/View/Helper/NetCommonsAppHelper.php @@ -0,0 +1,31 @@ + + */ + +App::uses('Helper', 'View'); + +/** + * Application helper + * + * Add your application-wide methods in the class below, your helpers + * will inherit them. + */ +class NetCommonsAppHelper extends Helper { +}