Свойство owner

This commit is contained in:
Alexander Demidov
2014-01-13 12:32:01 +04:00
parent e2e35efbc6
commit f3cbfb0969

View File

@ -18,11 +18,23 @@ abstract class File
private $error_stream;
private $owner;
public function __construct()
{
}
public function setOwner($owner)
{
$this->owner = $owner;
}
public function getOwner($owner)
{
return $this->owner;
}
public function log($message)
{
if (Config::get('LOGGING')) {