diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-09-13 09:30:56 +0200 | 
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-09-13 09:30:56 +0200 | 
| commit | 759dc9bb84d712c11148a9689d294c09aa0f81d4 (patch) | |
| tree | b97bc4c650007b8fb6b6b7aa80d3f1747e22bd73 /phpBB/phpbb/files/filespec.php | |
| parent | 40e614f56436447dffd272351e23b79c2da9fa3f (diff) | |
| download | forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.tar forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.tar.gz forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.tar.bz2 forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.tar.xz forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.zip | |
[ticket/13904] Set properties to protected where possible in filespec
PHPBB3-13904
Diffstat (limited to 'phpBB/phpbb/files/filespec.php')
| -rw-r--r-- | phpBB/phpbb/files/filespec.php | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/phpBB/phpbb/files/filespec.php b/phpBB/phpbb/files/filespec.php index 7a42e6bd50..7fc9e923ea 100644 --- a/phpBB/phpbb/files/filespec.php +++ b/phpBB/phpbb/files/filespec.php @@ -34,10 +34,10 @@ class filespec  	protected $mimetype = '';  	/** @var string File extension */ -	public $extension = ''; +	protected $extension = '';  	/** @var int File size */ -	public $filesize = 0; +	protected $filesize = 0;  	/** @var int Width of file */  	protected $width = 0; @@ -55,10 +55,10 @@ class filespec  	protected $destination_path = '';  	/** @var bool Whether file was moved */ -	public $file_moved = false; +	protected $file_moved = false;  	/** @var bool Whether file is local */ -	public $local = false; +	protected $local = false;  	/** @var bool Class initialization flag */  	protected $class_initialized = false; | 
