Свойство owner
This commit is contained in:
@ -18,11 +18,23 @@ abstract class File
|
|||||||
|
|
||||||
private $error_stream;
|
private $error_stream;
|
||||||
|
|
||||||
|
private $owner;
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function setOwner($owner)
|
||||||
|
{
|
||||||
|
$this->owner = $owner;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getOwner($owner)
|
||||||
|
{
|
||||||
|
return $this->owner;
|
||||||
|
}
|
||||||
|
|
||||||
public function log($message)
|
public function log($message)
|
||||||
{
|
{
|
||||||
if (Config::get('LOGGING')) {
|
if (Config::get('LOGGING')) {
|
||||||
|
Reference in New Issue
Block a user