From e9057cbea41b418a92ab41e91a1d01808906bdd0 Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Tue, 2 Jun 2020 09:56:17 +0200 Subject: Switch it_url::get() to static / remove support for legacy usage ->get() --- it_url.class | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/it_url.class b/it_url.class index 29429d2..d02939c 100644 --- a/it_url.class +++ b/it_url.class @@ -111,13 +111,8 @@ static function _postprocess($data, $p) * @param $p['postprocess'] function called with content and $p which has it_error. returns content or null * @return Content of resulting page (considering redirects, excluding headers or false on error) or array (empty on error) if 'assoc' => true */ -function get($p = [], $timeout = null) +static function get($p = [], $timeout = null) { - if (isset($this) && $this instanceof it_url) # FIXME 202006 cschneid Compatibility until all application switched to 'assoc' => true or it_ur::get() - { - it::error("Deprecated usage of it_url::get() as object method"); - return $this->_get($p, $timeout); - } return (new static)->_get($p, $timeout); } -- cgit v1.2.3