*/ class Client extends BaseClient { const CREATE = '/en/api/create'; public function create($title, $type, $content) { $response = $this->post( self::CREATE, array( 'form_params' => array( 'form' => array( 'title' => $title, 'type' => $type, 'content' => $content, ), ), ) ); if ($response->getStatusCode() === 200) { return json_decode($response->getBody()->getContents(), true); } return []; } }