@@ -117,6 +117,9 @@ discard block |
||
117 | 117 | ( ( false === strpos( $pPath, '.' ) ) ? '.' . self::FORMAT : '' ) . $query; |
118 | 118 | } |
119 | 119 | |
120 | + /** |
|
121 | + * @param string $pCanonizedPath |
|
122 | + */ |
|
120 | 123 | abstract function MakeRequest( $pCanonizedPath, $pMethod = 'GET', $pParams = array() ); |
121 | 124 | |
122 | 125 | /** |
@@ -149,6 +152,9 @@ discard block |
||
149 | 152 | return $result; |
150 | 153 | } |
151 | 154 | |
155 | + /** |
|
156 | + * @param string $pPath |
|
157 | + */ |
|
152 | 158 | public function Api( $pPath, $pMethod = 'GET', $pParams = array() ) { |
153 | 159 | return $this->_Api( $this->CanonizePath( $pPath ), $pMethod, $pParams ); |
154 | 160 | } |