for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* @author Chris Hilsdon <[email protected]>
*
* @link https://api.cloudflare.com/#user-properties
*/
namespace Cloudflare;
class User extends Base
{
protected $URL = "user";
public function get()
$this->makeRequest($this->URL);
return $this->getResponse();
}