@@ -630,4 +630,5 @@ class ExampleController extends Controller {
}
+ExampleController.toString = () => '[class ExampleController]';
module.exports = ExampleController;
@@ -25,4 +25,5 @@ class ExampleService extends Service {
+ExampleService.toString = () => '[class ExampleService]';
module.exports = ExampleService;
@@ -228,4 +228,5 @@ class StorageService extends Service {
+StorageService.toString = () => '[class StorageService]';
module.exports = StorageService;