| 1 | <?php |
||
| 5 | class YourMembershipClient { |
||
| 6 | |||
| 7 | public static $API_VERSION = '1.62'; |
||
| 8 | public static $BASE_URL = 'https://api.yourmembership.com'; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * [$callID description] |
||
| 12 | * @var [type] |
||
| 13 | */ |
||
| 14 | private $callID; |
||
|
|
|||
| 15 | |||
| 16 | /** |
||
| 17 | * [$sessionID description] |
||
| 18 | * @var [type] |
||
| 19 | */ |
||
| 20 | private $sessionID; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * [$apiKey description] |
||
| 24 | * @var [type] |
||
| 25 | */ |
||
| 26 | private $apiKey; |
||
| 27 | |||
| 28 | |||
| 29 | public function __construct() { |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Builds Base Request For YourMembership API |
||
| 35 | * @method buildBaseRequest |
||
| 36 | * @author PA |
||
| 37 | * @date 2017-01-09 |
||
| 38 | * @return [type] [description] |
||
| 39 | */ |
||
| 40 | private function buildBaseRequest() { |
||
| 43 | |||
| 44 | } |
||
| 45 |
This check marks private properties in classes that are never used. Those properties can be removed.