PHP code example of bravo3 / standards
1. Go to this page and download the library: Download bravo3/standards library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bravo3 / standards example snippets
use Eloquent\Enumeration\AbstractEnumeration;
/**
* @method static HttpRequestMethod GET()
* @method static HttpRequestMethod POST()
* @method static HttpRequestMethod PUT()
* @method static HttpRequestMethod DELETE()
*/
final class HttpRequestMethod extends AbstractEnumeration
{
const GET = 'GET';
const POST = 'POST';
const PUT = 'PUT';
const DELETE = 'DELETE';
}