Skip to content

Commit

Permalink
use object oriented style property
Browse files Browse the repository at this point in the history
Replace Procedural style get with object oriented style property
  • Loading branch information
photodude authored Nov 19, 2016
1 parent fe646a5 commit 75a668d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mysqli/MysqliDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ public function getVersion()
{
$this->connect();

return $this->connection->get_server_info();
return $this->connection->server_info;
}

/**
Expand Down

0 comments on commit 75a668d

Please sign in to comment.