Skip to content
Snippets Groups Projects
Unverified Commit 420b14de authored by HG's avatar HG Committed by GitHub
Browse files

Merge pull request #19 from ndobromirov/master

Fixed the issue for PHP 7.2.
parents 4d2a6005 2536ce62
Branches
Tags 2.2.0
No related merge requests found
......@@ -11,7 +11,7 @@ namespace gftp;
* @license GNU LESSER GPL 3
* @version 1.0
*/
class FtpFile extends \yii\base\Object {
class FtpFile extends \yii\base\BaseObject {
public $isDir;
public $rights;
......
......@@ -12,7 +12,7 @@ use \Yii;
/**
* Basic FTP connection driver.
*/
class FtpDriver extends \yii\base\Object implements RemoteDriver {
class FtpDriver extends \yii\base\BaseObject implements RemoteDriver {
/**
......
......@@ -9,7 +9,7 @@ use \ReflectionClass;
*
* @author herve
*/
abstract class Enum extends \yii\base\Object {
abstract class Enum extends \yii\base\BaseObject {
private $name;
private $ordinal;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment