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