@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | /** |
| 117 | - * @return Source[] |
|
| 117 | + * @return \Generator |
|
| 118 | 118 | */ |
| 119 | 119 | public function iterateSource() |
| 120 | 120 | { |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | /** |
| 140 | - * @return Index[] |
|
| 140 | + * @return \Generator |
|
| 141 | 141 | */ |
| 142 | 142 | public function iterateIndex() |
| 143 | 143 | { |
@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @author: Viskov Sergey |
|
| 4 | - * @date: 3/2/16 |
|
| 5 | - * @time: 4:33 PM |
|
| 6 | - */ |
|
| 3 | + * @author: Viskov Sergey |
|
| 4 | + * @date: 3/2/16 |
|
| 5 | + * @time: 4:33 PM |
|
| 6 | + */ |
|
| 7 | 7 | |
| 8 | 8 | namespace LTDBeget\sphinx\configurator; |
| 9 | 9 | |
@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @author: Viskov Sergey |
|
| 4 | - * @date: 17.03.16 |
|
| 5 | - * @time: 23:41 |
|
| 6 | - */ |
|
| 3 | + * @author: Viskov Sergey |
|
| 4 | + * @date: 17.03.16 |
|
| 5 | + * @time: 23:41 |
|
| 6 | + */ |
|
| 7 | 7 | |
| 8 | 8 | namespace LTDBeget\dev; |
| 9 | 9 | |
@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * @author: Viskov Sergey |
|
| 4 | - * @date: 17.03.16 |
|
| 5 | - * @time: 23:37 |
|
| 6 | - */ |
|
| 3 | + * @author: Viskov Sergey |
|
| 4 | + * @date: 17.03.16 |
|
| 5 | + * @time: 23:37 |
|
| 6 | + */ |
|
| 7 | 7 | |
| 8 | 8 | namespace LTDBeget\sphinx\informer\exceptions; |
| 9 | 9 | |
@@ -1,9 +1,9 @@ |
||
| 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 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | $name = $section["name"]; |
| 90 | 90 | $inheritanceName = !empty($section["inheritance"]) ? $section["inheritance"] : null; |
| 91 | - $section = $this->objectConfiguration->addSource($name, $inheritanceName); |
|
| 91 | + $section = $this->objectConfiguration->addSource($name, $inheritanceName); |
|
| 92 | 92 | break; |
| 93 | 93 | case eSection::INDEX(): |
| 94 | 94 | $name = $section["name"]; |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | } |
| 99 | 99 | |
| 100 | 100 | $inheritanceName = !empty($section["inheritance"]) ? $section["inheritance"] : null; |
| 101 | - $section = $this->objectConfiguration->addIndex($name, $inheritanceName); |
|
| 101 | + $section = $this->objectConfiguration->addIndex($name, $inheritanceName); |
|
| 102 | 102 | break; |
| 103 | 103 | case eSection::INDEXER(): |
| 104 | 104 | $section = $this->objectConfiguration->getIndexer(); |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | */ |
| 156 | 156 | private function getOptionName(Section $section, string $name) : eOption |
| 157 | 157 | { |
| 158 | - switch($section->getType()) { |
|
| 158 | + switch ($section->getType()) { |
|
| 159 | 159 | case eSection::SOURCE(): |
| 160 | 160 | $option = eSourceOption::get($name); |
| 161 | 161 | break; |
@@ -1,9 +1,9 @@ |
||
| 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 | |
@@ -1,9 +1,9 @@ |
||
| 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 | |
@@ -1,9 +1,9 @@ |
||
| 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 | |
@@ -1,9 +1,9 @@ |
||
| 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 | |
@@ -1,9 +1,9 @@ |
||
| 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 | |