PHP Classes

File: app/api/APIPing.php

Recommend this page to a friend!
  Classes of Brett Dutton   JackBooted PHP Framework   app/api/APIPing.php   Download  
File: app/api/APIPing.php
Role: Class source
Content type: text/plain
Description: Class source
Class: JackBooted PHP Framework
Web application framework using simplified MVC
Author: By
Last change:
Date: 8 years ago
Size: 155 bytes
 

Contents

Class file image Download
<?php
namespace App\Mocks;

class
APIPing {
    public static function
index () {
       
$data = [ 'Pong' ];
        return
json_encode( $data );
    }
}