change deprecated object to baseobject

This commit is contained in:
_alvian 2017-11-10 15:33:59 +07:00
parent 75b00ccc59
commit d0649796c5

View File

@ -10,10 +10,9 @@ use ArangoDBClient\DocumentHandler;
use ArangoDBClient\Statement; use ArangoDBClient\Statement;
use ArangoDBClient\UpdatePolicy; use ArangoDBClient\UpdatePolicy;
use yii\base\BaseObject;
use yii\base\Object; class Connection extends BaseObject
class Connection extends Object
{ {
private $connection = null; private $connection = null;
@ -106,3 +105,4 @@ class Connection extends Object
return new Statement($this->connection, $options); return new Statement($this->connection, $options);
} }
} }