add namespaces to docstring types

This commit is contained in:
coderkun 2015-03-06 12:19:07 +01:00
commit 969887da58
98 changed files with 632 additions and 555 deletions

View file

@ -77,7 +77,7 @@
/**
* Establish a connect to a MqSQL-database.
*
* @throws DatamodelException
* @throws \nre\exceptions\DatamodelException
* @param array $config Connection and login settings
*/
protected abstract function connect($config);

View file

@ -26,7 +26,7 @@
/**
* Construct a MySQL-driver.
*
* @throws DatamodelException
* @throws \nre\exceptions\DatamodelException
* @param array $config Connection and login settings
*/
function __construct($config)
@ -40,7 +40,7 @@
/**
* Execute a SQL-query.
*
* @throws DatamodelException
* @throws \nre\exceptions\DatamodelException
* @param string $query Query to run
* @param mixed Params
* @return array Result
@ -137,7 +137,7 @@
/**
* Establish a connect to a MqSQL-database.
*
* @throws DatamodelException
* @throws \nre\exceptions\DatamodelException
* @param array $config Connection and login settings
*/
protected function connect($config)