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