Diff
Index: notifications_create.php
--- notifications_create.php (nonexistent)
+++ notifications_create.php (revision 4)
@@ -0,0 +1,24 @@
+<?php
+declare(strict_types = 1);
+
+namespace Views\admin\settings;
+
+use Apex\Svc{App, View};
+
+/**
+ * Render the template.
+ */
+class notifications_create
+{
+
+ /**
+ * Render
+ */
+ public function render(View $view, App $app):void
+ {
+ $view->assign('controller', $app->post('controller'));
+ }
+
+}
+
+
Full Code
<?php
declare(strict_types = 1);
namespace Views\admin\settings;
use Apex\Svc{App, View};
/**
* Render the template.
*/
class notifications_create
{
/**
* Render
*/
public function render(View $view, App $app):void
{
$view->assign('controller', $app->post('controller'));
}
}