More style fixes

This commit is contained in:
Timothy Warren 2016-09-07 14:22:52 -04:00
parent 24f3b1d701
commit 2db7ad182d
6 changed files with 11 additions and 4 deletions

View File

@ -32,6 +32,7 @@ abstract class AbstractUtil {
/**
* Reference to the current connection object
* @var DriverInterface
*/
private $conn;

View File

@ -53,7 +53,9 @@ final class ConnectionManager {
/**
* Private clone method to prevent cloning
*
* @throws \DomainException
* @return void
*/
public function __clone()
{
@ -64,7 +66,9 @@ final class ConnectionManager {
/**
* Prevent serialization of this object
*
* @throws \DomainException
* @return void
*/
public function __sleep()
{
@ -75,7 +79,9 @@ final class ConnectionManager {
/**
* Make sure serialize/deserialize doesn't work
*
* @throws \DomainException
* @return void
*/
public function __wakeup()
{

View File

@ -184,7 +184,7 @@ class Driver extends \Query\AbstractDriver {
*
* @param string $sql
* @return Result
* @throws PDOException
* @throws \PDOException
*/
public function query($sql = '')
{

View File

@ -44,7 +44,7 @@ class Result extends \PDOStatement {
/**
* Data pulled from query
*
* @param mixed
* @var mixed
*/
private $result = [];

View File

@ -672,7 +672,7 @@ class QueryBuilder extends AbstractQueryBuilder /*implements QueryBuilderInterfa
* Select and retrieve all records from the current table, and/or
* execute current compiled query
*
* @param $table
* @param string $table
* @param int|bool $limit
* @param int|bool $offset
* @return \PDOStatement

View File

@ -370,7 +370,7 @@ interface QueryBuilderInterface {
* Select and retrieve all records from the current table, and/or
* execute current compiled query
*
* @param $table
* @param string $table
* @param int|bool $limit
* @param int|bool $offset
* @return \PDOStatement