-
Notifications
You must be signed in to change notification settings - Fork 729
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
housekeeping: php-cs-fixer PreIncrementFixer
- Loading branch information
Manuel Andreo Garcia
committed
Jul 27, 2015
1 parent
966ae3e
commit d06aefa
Showing
19 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,7 +128,7 @@ public function testEmptyBoolQuery() | |
$type = new Type($index, 'test'); | ||
|
||
$docNumber = 3; | ||
for ($i = 0; $i < $docNumber; $i++) { | ||
for ($i = 0; $i < $docNumber; ++$i) { | ||
$doc = new Document($i, array('email' => '[email protected]')); | ||
$type->addDocument($doc); | ||
} | ||
|
@@ -155,7 +155,7 @@ public function testOldObject() | |
$type = new Type($index, 'test'); | ||
|
||
$docNumber = 3; | ||
for ($i = 0; $i < $docNumber; $i++) { | ||
for ($i = 0; $i < $docNumber; ++$i) { | ||
$doc = new Document($i, array('email' => '[email protected]')); | ||
$type->addDocument($doc); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -251,7 +251,7 @@ public function testSearchScrollRequest() | |
$type = $index->getType('scrolltest'); | ||
|
||
$docs = array(); | ||
for ($x = 1; $x <= 10; $x++) { | ||
for ($x = 1; $x <= 10; ++$x) { | ||
$docs[] = new Document($x, array('id' => $x, 'testscroll' => 'jbafford')); | ||
} | ||
|
||
|
@@ -355,7 +355,7 @@ public function testArrayConfigSearch() | |
$index->create(array('index' => array('number_of_shards' => 1, 'number_of_replicas' => 0)), true); | ||
|
||
$docs = array(); | ||
for ($i = 0; $i < 11; $i++) { | ||
for ($i = 0; $i < 11; ++$i) { | ||
$docs[] = new Document($i, array('id' => 1, 'email' => '[email protected]', 'username' => 'test')); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters