Ubiquity  2.0.2
php rapid development framework
Constants.php
Go to the documentation of this file.
1 <?php
2 
4 
5 class Constants {
6  const REQUEST_METHODS=[ "get" => "GET","post" => "POST","put" => "PUT","patch" => "PATCH","delete" => "DELETE","head" => "HEAD","options" => "OPTIONS" ];
7 }