FIle - /trunk/views/php/membersinbox.php
/trunk/views/php/membersinbox.php
|
|
727 bytes
|
|
January 20, 2025 at 08:22
|
|
<?php
declare(strict_types = 1);
namespace Views;
use Apex\Svc\{View, App};
/**
* Render the template. All methods below are optional, may be
* removed as desired, and all methods support method based dependency injection.
*/
class membersinbox
{
/**
* Render. This method will be called with every view
* regardless of the HTTP method.
*/
public function render(View $view, App $app):void
{
}
/**
* Get. Will only be called when the HTTP method is GET.
*/
public function get(View $view, App $app):void
{
}
/**
* Post. Will only be called when the HTTP method is POST.
*/
public function post(View $view, App $app):void
{
}
}