Skip to content

Commit

Permalink
Merge pull request #2 from archlemon/patch-1
Browse files Browse the repository at this point in the history
Replaced `yii\base\Object` with `yii\base\BaseObject` for PHP 7.2 compatibility.
  • Loading branch information
naffiq authored Apr 10, 2019
2 parents facd3da + 7b120b0 commit 383f474
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions helpers/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@


use linslin\yii2\curl\Curl;
use yii\base\Object;
use yii\base\BaseObject;

class Request extends Object
class Request extends BaseObject
{
/**
* Curl object for RESTful API
Expand Down Expand Up @@ -59,4 +59,4 @@ public function init()
);

}
}
}

0 comments on commit 383f474

Please sign in to comment.