Commit b3286bd6 authored by Jeremy Mikola's avatar Jeremy Mikola

Fix doc block spacing

parent 31976928
...@@ -18,10 +18,10 @@ class CollectionInfo ...@@ -18,10 +18,10 @@ class CollectionInfo
private $info; private $info;
/** /**
* Constructor. * Constructor.
* *
* @param array $info Collection info * @param array $info Collection info
*/ */
public function __construct(array $info) public function __construct(array $info)
{ {
$this->info = $info; $this->info = $info;
......
...@@ -17,10 +17,10 @@ class DatabaseInfo ...@@ -17,10 +17,10 @@ class DatabaseInfo
private $info; private $info;
/** /**
* Constructor. * Constructor.
* *
* @param array $info Database info * @param array $info Database info
*/ */
public function __construct(array $info) public function __construct(array $info)
{ {
$this->info = $info; $this->info = $info;
......
...@@ -25,10 +25,10 @@ class IndexInfo implements ArrayAccess ...@@ -25,10 +25,10 @@ class IndexInfo implements ArrayAccess
private $info; private $info;
/** /**
* Constructor. * Constructor.
* *
* @param array $info Index info * @param array $info Index info
*/ */
public function __construct(array $info) public function __construct(array $info)
{ {
$this->info = $info; $this->info = $info;
......
...@@ -20,11 +20,11 @@ class IndexInput implements Serializable ...@@ -20,11 +20,11 @@ class IndexInput implements Serializable
private $index; private $index;
/** /**
* Constructor. * Constructor.
* *
* @param array $index Index specification * @param array $index Index specification
* @throws InvalidArgumentException * @throws InvalidArgumentException
*/ */
public function __construct(array $index) public function __construct(array $index)
{ {
if ( ! isset($index['key'])) { 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