change deprecated object to baseobject
This commit is contained in:
parent
75b00ccc59
commit
d0649796c5
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue