Skip to content

Commit b3286bd

Browse files
committed
Fix doc block spacing
1 parent 3197692 commit b3286bd

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

src/Model/CollectionInfo.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ class CollectionInfo
1818
private $info;
1919

2020
/**
21-
* Constructor.
22-
*
23-
* @param array $info Collection info
24-
*/
21+
* Constructor.
22+
*
23+
* @param array $info Collection info
24+
*/
2525
public function __construct(array $info)
2626
{
2727
$this->info = $info;

src/Model/DatabaseInfo.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ class DatabaseInfo
1717
private $info;
1818

1919
/**
20-
* Constructor.
21-
*
22-
* @param array $info Database info
23-
*/
20+
* Constructor.
21+
*
22+
* @param array $info Database info
23+
*/
2424
public function __construct(array $info)
2525
{
2626
$this->info = $info;

src/Model/IndexInfo.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ class IndexInfo implements ArrayAccess
2525
private $info;
2626

2727
/**
28-
* Constructor.
29-
*
30-
* @param array $info Index info
31-
*/
28+
* Constructor.
29+
*
30+
* @param array $info Index info
31+
*/
3232
public function __construct(array $info)
3333
{
3434
$this->info = $info;

src/Model/IndexInput.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ class IndexInput implements Serializable
2020
private $index;
2121

2222
/**
23-
* Constructor.
24-
*
25-
* @param array $index Index specification
26-
* @throws InvalidArgumentException
27-
*/
23+
* Constructor.
24+
*
25+
* @param array $index Index specification
26+
* @throws InvalidArgumentException
27+
*/
2828
public function __construct(array $index)
2929
{
3030
if ( ! isset($index['key'])) {

0 commit comments

Comments
 (0)