Completed
Pull Request — master (#64)
by
unknown
01:31
created
src/TwitterAds.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      * @param string $path
276 276
      * @param array $parameters
277 277
      *
278
-     * @param array $headers
278
+     * @param string[] $headers
279 279
      * @return Response
280 280
      * @throws BadRequest
281 281
      * @throws Forbidden
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
      * @param string $path
319 319
      * @param array $parameters
320 320
      *
321
-     * @param array $headers
321
+     * @param string[] $headers
322 322
      * @return Response
323 323
      * @throws BadRequest
324 324
      * @throws Forbidden
@@ -811,6 +811,10 @@  discard block
 block discarded – undo
811 811
     // This function takes a input like a=b&a=c&d=e and returns the parsed
812 812
     // parameters like this
813 813
     // array('a' => array('b','c'), 'd' => 'e')
814
+
815
+    /**
816
+     * @param string $input
817
+     */
814 818
     public static function parse_parameters($input)
815 819
     {
816 820
         if (!isset($input) || !$input) {
Please login to merge, or discard this patch.