phpdocs
authorgggeek <giunta.gaetano@gmail.com>
Wed, 18 Jan 2023 17:29:48 +0000 (17:29 +0000)
committergggeek <giunta.gaetano@gmail.com>
Wed, 18 Jan 2023 17:29:48 +0000 (17:29 +0000)
src/Request.php
src/Response.php
src/Wrapper.php

index dce5aae..4519dfc 100644 (file)
@@ -26,7 +26,9 @@ class Request
     public $methodname;
     /** @internal */
     public $params = array();
+    /** @var int */
     public $debug = 0;
+    /** @var string */
     public $content_type = 'text/xml';
 
     // holds data while parsing the response. NB: Not a full Response object
index 760e782..5e060a3 100644 (file)
@@ -27,6 +27,7 @@ class Response
     /** @internal */
     public $errstr = '';
     public $payload;
+    /** @var string */
     public $content_type = 'text/xml';
     protected $httpResponse = array('headers' => array(), 'cookies' => array(), 'raw_data' => '', 'status_code' => null);
 
index 0f36fa9..6fe7eb5 100644 (file)
@@ -26,6 +26,7 @@ class Wrapper
 
     protected static $logger;
 
+    /** @var string */
     protected static $namespace = '\\PhpXmlRpc\\';
 
     public function getLogger()