mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-11-16 10:05:14 +00:00
Bye-bye, PHP4
Convert `var`-based property declarations into the `public`-based ones (not sure about the visibility)
This commit is contained in:
parent
1f15a51f16
commit
402d7b35d9
@ -25,10 +25,9 @@ use Joomla\Archive\Archive;
|
||||
*/
|
||||
class JedcheckerControllerUploads extends JControllerlegacy
|
||||
{
|
||||
|
||||
var $path = null;
|
||||
var $pathArchive = null;
|
||||
var $pathUnzipped = null;
|
||||
public $path;
|
||||
public $pathArchive;
|
||||
public $pathUnzipped;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
|
Loading…
Reference in New Issue
Block a user