]> git.mxchange.org Git - hub.git/commit
Small rewrite for better use of closeFile():
authorRoland Haeder <roland@mxchange.org>
Wed, 18 Mar 2015 00:40:49 +0000 (01:40 +0100)
committerRoland Haeder <roland@mxchange.org>
Wed, 18 Mar 2015 00:40:49 +0000 (01:40 +0100)
commit2fa120077c1dbf3f98589d36351d2b1ded76d271
treeeb54ee1d701b82a14421494ec0c35799bd74cca0
parent3e80b362d56cce84b1b33e66f13dba51e4cc9606
Small rewrite for better use of closeFile():
- closeFile() is now no longer be callable publicly. If a file needs to be
  closed, it can simply be set to NULL (or unset). Class fields which points to
  such objects (e.g. pointerInstance) should always be set to NULL and not
  removed as this may cause checks with is_null() to trigger an E_NOTICE:

<?php
error_reporting(E_ALL);

class Object {}

$var = new Object();

$isNull = is_null($var);
var_dump($isNull);

unset($var);

$isNull = is_null($var);
var_dump($isNull);
?>

  Being set to NULL or completly unset is a different thing.
- Updated 'core' to latest commit

Signed-off-by: Roland Haeder <roland@mxchange.org>
application/hub/main/source/urls/class_CrawlerUploadedListUrlSource.php
core