Removing private annotations for File::__construct() and File::__destruct() as its just not true. This also prevents them from being included in the API docs.

This commit is contained in:
mark_story 2010-12-05 18:41:26 -05:00
parent 1dbed85979
commit 7024d14c74

View file

@ -93,7 +93,6 @@ class File extends Object {
* @param string $path Path to file
* @param boolean $create Create file if it does not exist (if true)
* @param integer $mode Mode to apply to the folder holding the file
* @access private
*/
function __construct($path, $create = false, $mode = 0755) {
parent::__construct();
@ -108,7 +107,6 @@ class File extends Object {
/**
* Closes the current file if it is opened
*
* @access private
*/
function __destruct() {
$this->close();