PingController.php 359 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Controllers\Api;
  3. use CodeIgniter\RESTful\ResourceController;
  4. class PingController extends ResourceController
  5. {
  6. protected $format = 'json';
  7. public function index()
  8. {
  9. return $this->respond([
  10. 'success' => true,
  11. 'message' => 'pong',
  12. 'time' => date('Y-m-d H:i:s')
  13. ]);
  14. }
  15. }