It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
28
$this->set_feed_url($url);
29
}
30
}
31
32
/**
33
* Fetch an URL using our own HTTPClient
34
*
35
* Replaces SimplePie's own class
36
*/
37
class FeedParser_File extends SimplePie_File {
38
var $http;
39
var $useragent;
40
var $success = true;
41
var $headers = array();
42
var $body;
43
var $error;
44
45
/**
46
* Inititializes the HTTPClient
47
*
48
* We ignore all given parameters - they are set in DokuHTTPClient
49
*/
50
function __construct($url, $timeout=10, $redirects=5,
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
The property resp_headers cannot be accessed from this context as it is declared private in class HTTPClient.
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its
visibility level or provide an accessible getter in the defining class.
The property resp_body cannot be accessed from this context as it is declared private in class HTTPClient.
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its
visibility level or provide an accessible getter in the defining class.
The property error cannot be accessed from this context as it is declared private in class HTTPClient.
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its
visibility level or provide an accessible getter in the defining class.
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.