for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace P2A\YourMembership;
class YourMembershipClient {
public static $API_VERSION = '1.62';
public static $BASE_URL = 'https://api.yourmembership.com';
/**
* [$callID description]
* @var [type]
*/
private $callID;
$callID
This check marks private properties in classes that are never used. Those properties can be removed.
* [$sessionID description]
private $sessionID;
$sessionID
* [$apiKey description]
private $apiKey;
$apiKey
public function __construct() {
}
* Builds Base Request For YourMembership API
* @method buildBaseRequest
* @author PA
* @date 2017-01-09
* @return [type] [description]
[type]
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.
private function buildBaseRequest() {
This check marks private properties in classes that are never used. Those properties can be removed.