From d0649796c59e0152007d2ea56fda74fbb6abcbdf Mon Sep 17 00:00:00 2001
From: _alvian <alvian.burhanuddin@akupeduli.org>
Date: Fri, 10 Nov 2017 15:33:59 +0700
Subject: [PATCH] change deprecated object to baseobject

---
 Connection.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Connection.php b/Connection.php
index d779e5a..63fd183 100644
--- a/Connection.php
+++ b/Connection.php
@@ -10,10 +10,9 @@ use ArangoDBClient\DocumentHandler;
 use ArangoDBClient\Statement;
 use ArangoDBClient\UpdatePolicy;
 
+use yii\base\BaseObject;
 
-use yii\base\Object;
-
-class Connection extends Object
+class Connection extends BaseObject
 {
     private $connection = null;
 
@@ -106,3 +105,4 @@ class Connection extends Object
         return new Statement($this->connection, $options);
     }
 }
+