Passed
Push — master ( 41a727...ec7c33 )
by Sergey
02:52
created
src/LTDBeget/sphinx/informer/exceptions/NotFoundException.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:46 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/17/16
5
+     * @time: 1:46 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\informer\exceptions;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/informer/Informer.php 2 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/17/16
5
- * @time: 1:22 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/17/16
5
+     * @time: 1:22 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\informer;
9 9
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function isSectionExist(eSection $section) : bool
75 75
     {
76
-        if($section == eSection::COMMON && version_compare( (string) $this->version, eVersion::V_2_2_1, '<')) {
76
+        if ($section == eSection::COMMON && version_compare((string) $this->version, eVersion::V_2_2_1, '<')) {
77 77
             return false;
78 78
         }
79 79
 
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     public function iterateOptionInfo(eSection $section)
90 90
     {
91
-        if (! $this->isSectionExist($section)) {
91
+        if (!$this->isSectionExist($section)) {
92 92
             throw new \LogicException("Sphinx of version {$this->version} does't have section {$section}");
93 93
         }
94 94
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
      */
107 107
     private function getOptionName(eSection $section, string $optionName) : eOption
108 108
     {
109
-        $enumClassName = "LTDBeget\\sphinx\\enums\\options\\e".ucfirst( (string) $section)."Option";
109
+        $enumClassName = "LTDBeget\\sphinx\\enums\\options\\e" . ucfirst((string) $section) . "Option";
110 110
         /**
111 111
          * @var eOption $enumClassName
112 112
          */
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/enums/base/Enum.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: 17/03/16
5
- * @time: 22:40
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 17/03/16
5
+     * @time: 22:40
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/base/Settings.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: 20.03.16
5
- * @time: 1:53
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 20.03.16
5
+     * @time: 1:53
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\configurationEntities\base;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/Configuration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
     public function getCommon() : Common
187 187
     {
188 188
         $section = eSection::COMMON();
189
-        if(! $this->isAllowedSection($section)) {
189
+        if (!$this->isAllowedSection($section)) {
190 190
             throw new \LogicException("Sphinx of version {$this->version} does't have section {$section}");
191 191
         }
192 192
 
Please login to merge, or discard this patch.