Commit b3286bd6 authored by Jeremy Mikola's avatar Jeremy Mikola

Fix doc block spacing

parent 31976928
......@@ -18,10 +18,10 @@ class CollectionInfo
private $info;
/**
* Constructor.
*
* @param array $info Collection info
*/
* Constructor.
*
* @param array $info Collection info
*/
public function __construct(array $info)
{
$this->info = $info;
......
......@@ -17,10 +17,10 @@ class DatabaseInfo
private $info;
/**
* Constructor.
*
* @param array $info Database info
*/
* Constructor.
*
* @param array $info Database info
*/
public function __construct(array $info)
{
$this->info = $info;
......
......@@ -25,10 +25,10 @@ class IndexInfo implements ArrayAccess
private $info;
/**
* Constructor.
*
* @param array $info Index info
*/
* Constructor.
*
* @param array $info Index info
*/
public function __construct(array $info)
{
$this->info = $info;
......
......@@ -20,11 +20,11 @@ class IndexInput implements Serializable
private $index;
/**
* Constructor.
*
* @param array $index Index specification
* @throws InvalidArgumentException
*/
* Constructor.
*
* @param array $index Index specification
* @throws InvalidArgumentException
*/
public function __construct(array $index)
{
if ( ! isset($index['key'])) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment