Passed
Push — master ( d9f189...6e9648 )
by Sergey
06:02 queued 03:02
created
src/LTDBeget/sphinx/configurator/deserializers/ArrayDeserializer.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: 19.03.16
5
- * @time: 1:54
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 19.03.16
5
+     * @time: 1:54
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\deserializers;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/deserializers/PlainDeserializer.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: 19.03.16
5
- * @time: 2:00
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 19.03.16
5
+     * @time: 2:00
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\deserializers;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/serializers/JsonSerializer.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: 6:36 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/14/16
5
+     * @time: 6:36 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\serializers;
9 9
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/serializers/PlainSerializer.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/3/16
5
- * @time: 5:13 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/3/16
5
+     * @time: 5:13 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\serializers;
9 9
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      */
103 103
     private function serializeSection(Section $section)
104 104
     {
105
-        if($section->isDeleted()) {
105
+        if ($section->isDeleted()) {
106 106
             return;
107 107
         }
108 108
 
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/serializers/ArraySerializer.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/14/16
5
- * @time: 12:54 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/14/16
5
+     * @time: 12:54 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\serializers;
9 9
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      */
98 98
     private function serializeIndexer()
99 99
     {
100
-        if ($this->objectConfiguration->isHasIndexer() && ! $this->objectConfiguration->getIndexer()->isDeleted()) {
100
+        if ($this->objectConfiguration->isHasIndexer() && !$this->objectConfiguration->getIndexer()->isDeleted()) {
101 101
             $this->serializeSettings($this->objectConfiguration->getIndexer());
102 102
         }
103 103
     }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     private function serializeSearchhd()
111 111
     {
112
-        if ($this->objectConfiguration->isHasSearchd() && ! $this->objectConfiguration->getSearchd()->isDeleted()) {
112
+        if ($this->objectConfiguration->isHasSearchd() && !$this->objectConfiguration->getSearchd()->isDeleted()) {
113 113
             $this->serializeSettings($this->objectConfiguration->getSearchd());
114 114
         }
115 115
     }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      */
123 123
     private function serializeCommon()
124 124
     {
125
-        if ($this->objectConfiguration->isHasCommon() && ! $this->objectConfiguration->getCommon()->isDeleted()) {
125
+        if ($this->objectConfiguration->isHasCommon() && !$this->objectConfiguration->getCommon()->isDeleted()) {
126 126
             $this->serializeSettings($this->objectConfiguration->getCommon());
127 127
         }
128 128
     }
Please login to merge, or discard this patch.
src/LTDBeget/sphinx/configurator/configurationEntities/sections/Common.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:33 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/18/16
5
+     * @time: 5:33 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/Index.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/Searchd.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:43 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/18/16
5
+     * @time: 5:43 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/base/Section.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/18/16
5
- * @time: 5:11 PM
6
- */
3
+     * @author: Viskov Sergey
4
+     * @date: 3/18/16
5
+     * @time: 5:11 PM
6
+     */
7 7
 
8 8
 namespace LTDBeget\sphinx\configurator\configurationEntities\base;
9 9
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,13 +97,13 @@
 block discarded – undo
97 97
                     /**
98 98
                      * @var Option $multiOption
99 99
                      */
100
-                    if(! $multiOption->isDeleted()) {
100
+                    if (!$multiOption->isDeleted()) {
101 101
                         yield $multiOption;
102 102
                     }
103 103
 
104 104
                 }
105 105
             } else {
106
-                if(! $option->isDeleted()) {
106
+                if (!$option->isDeleted()) {
107 107
                     yield $option;
108 108
                 }
109 109
             }
Please login to merge, or discard this patch.