FIle - /trunk/views/php/membersinbox.php

/trunk/views/php/membersinbox.php
727 bytes
January 20, 2025 at 08:22
4




<?php
declare(strict_types 1);

namespace 
Views;

use 
Apex\Svc\{ViewApp};

/**
 * 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 $viewApp $app):void
    
{

    }

    
/**
     * Get.  Will only be called when the HTTP method is GET.
     */
    
public function get(View $viewApp $app):void
    
{

    }

    
/**
     * Post.  Will only be called when the HTTP method is POST.
     */
    
public function post(View $viewApp $app):void
    
{

    }

}