for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Darkgoldblade01\Wordpress\Api;
use Darkgoldblade01\Wordpress\WordpressApi;
class Secret extends WordpressApi
{
protected $base_uri = 'https://api.wordpress.org/secret-key/';
/**
* Core 1.0.
*
* Returns the version 1.0 definitions.
* @return mixed
* @throws \GuzzleHttp\Exception\GuzzleException
*/
public function version_1_0()
return $this->get('1.0');
}
* Core 1.1.
* Returns the version 1.1 definitions.
public function version_1_1()
return $this->get('1.1');
* Core 1.1 Salt.
* Returns the version 1.1 salt definitions.
public function version_1_1_salt()
return $this->get('1.1/salt');