Completed
Push — master ( db9aad...f94e53 )
by Sergey
02:19
created
src/LTDBeget/sphinx/configurator/parser/SphinxConfigurationParser.php 3 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 3/10/16
5
- * @time: 1:33 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/10/16
5
+     * @time: 1:33 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\parser;
9 9
 
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
             $this->extractSection();
67 67
             $this->saveCurrentSection();
68 68
 
69
-        } while (! $this->stream->isEnd());
69
+        } while (!$this->stream->isEnd());
70 70
 
71 71
         return $this;
72 72
     }
@@ -156,11 +156,11 @@  discard block
 block discarded – undo
156 156
 
157 157
         $char = $this->stream->currentAscii();
158 158
 
159
-        if($char->isVerticalSpace() || $char->is(AsciiChar::OPENING_BRACE())) {
159
+        if ($char->isVerticalSpace() || $char->is(AsciiChar::OPENING_BRACE())) {
160 160
             return;
161 161
         }
162 162
 
163
-        if($char->is(AsciiChar::COLON())) {
163
+        if ($char->is(AsciiChar::COLON())) {
164 164
             $this->stream->next();
165 165
             $this->extractInheritanceName();
166 166
         } else {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
             goto start;
185 185
         } elseif ($char->isWhiteSpace()) {
186 186
             return;
187
-        }  else {
187
+        } else {
188 188
             throw new SyntaxErrorException($this->stream);
189 189
         }
190 190
     }
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
         $char = $this->stream->currentAscii();
258 258
         $this->stream->next();
259 259
 
260
-        if (! $char->is(AsciiChar::EQUALS())) {
260
+        if (!$char->is(AsciiChar::EQUALS())) {
261 261
             throw new SyntaxErrorException($this->stream);
262 262
         }
263 263
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -184,7 +184,7 @@
 block discarded – undo
184 184
             goto start;
185 185
         } elseif ($char->isWhiteSpace()) {
186 186
             return;
187
-        }  else {
187
+        } else {
188 188
             throw new SyntaxErrorException($this->stream);
189 189
         }
190 190
     }
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/enums/options/eIndexerOption.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * automatically generated from sphinx documentation
4
- */
3
+     * automatically generated from sphinx documentation
4
+     */
5 5
 
6 6
 namespace LTDBeget\sphinx\enums\options;
7 7
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/enums/eVersion.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 3/17/16
5
- * @time: 1:14 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/17/16
5
+     * @time: 1:14 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\enums;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/enums/eSection.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 3/17/16
5
- * @time: 2:41 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/17/16
5
+     * @time: 2:41 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\enums;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/enums/base/eOption.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 3/17/16
5
- * @time: 2:46 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/17/16
5
+     * @time: 2:46 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\enums\base;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/configurationEntities/sections/Source.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 3/18/16
5
- * @time: 5:32 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/18/16
5
+     * @time: 5:32 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\configurationEntities\sections;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/configurationEntities/sections/Indexer.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 3/18/16
5
- * @time: 5:32 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/18/16
5
+     * @time: 5:32 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\configurationEntities\sections;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/exceptions/SerializerException.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 3/14/16
5
- * @time: 1:27 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/14/16
5
+     * @time: 1:27 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\exceptions;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/exceptions/ValidationException.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author: Viskov Sergey
4
- * @date: 3/2/16
5
- * @time: 6:28 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/2/16
5
+     * @time: 6:28 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\exceptions;
9 9
 
Please login to merge, or discard this patch.