From 759dc9bb84d712c11148a9689d294c09aa0f81d4 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 13 Sep 2015 09:30:56 +0200 Subject: [ticket/13904] Set properties to protected where possible in filespec PHPBB3-13904 --- phpBB/phpbb/files/filespec.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'phpBB/phpbb/files/filespec.php') 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; -- cgit v1.2.1