Browse Source

Improve doc block

bancer 6 years ago
parent
commit
a1db47adf1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Database/Connection.php

+ 2 - 1
src/Database/Connection.php

@@ -107,7 +107,6 @@ class Connection implements ConnectionInterface
     /**
      * Constructor.
      *
-     * @param array $config Configuration array.
      * ### Available options:
      * - `driver` Sort name or FCQN for driver.
      * - `log` Boolean indicating whether to use query logging.
@@ -115,6 +114,8 @@ class Connection implements ConnectionInterface
      * - `cacheMetaData` Boolean indicating whether metadata (datasource schemas) should be cached.
      *    If set to a string it will be used as the name of cache config to use.
      * - `cacheKeyPrefix` Custom prefix to use when generation cache keys. Defaults to connection name.
+     *
+     * @param array $config Configuration array.
      */
     public function __construct($config)
     {