@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | * iteratively fetches the properties of the object (including from the base classes up the hierarchy), ... |
118 | 118 | * collects them in an array of ReflectionProperty and returns the array. |
119 | 119 | * |
120 | - * @param ReflectionObject $reflClass |
|
120 | + * @param \ReflectionObject $reflClass |
|
121 | 121 | * |
122 | 122 | * @return \ReflectionProperty[] |
123 | 123 | */ |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | * |
142 | 142 | * Receives a ReflectionProperty and an object, and returns a masked object if the ReflectionProperty corresponds to a sensitive field, else returns false. |
143 | 143 | * |
144 | - * @param ReflectionProperty $prop |
|
144 | + * @param \ReflectionProperty $prop |
|
145 | 145 | * @param object $obj |
146 | 146 | * |
147 | 147 | * @return string|bool |
@@ -280,6 +280,9 @@ discard block |
||
280 | 280 | } |
281 | 281 | } |
282 | 282 | |
283 | + /** |
|
284 | + * @param string $logMessage |
|
285 | + */ |
|
283 | 286 | public function info($logMessage, $flags=FILE_APPEND){ |
284 | 287 | if(self::ANET_LOG_INFO >= $this->logLevel) { |
285 | 288 | $this->log(self::ANET_LOG_INFO_PREFIX, $logMessage,$flags); |
@@ -298,6 +301,9 @@ discard block |
||
298 | 301 | } |
299 | 302 | } |
300 | 303 | |
304 | + /** |
|
305 | + * @param string $logLevelPrefix |
|
306 | + */ |
|
301 | 307 | private function logFormat($logLevelPrefix, $format, $objects, $flags){ |
302 | 308 | try { |
303 | 309 | foreach($objects as $i => $testObject){ |