@@ -94,6 +94,7 @@ discard block |
||
| 94 | 94 | * The name of the field |
| 95 | 95 | * @param mixed $value |
| 96 | 96 | * The value of this field |
| 97 | + * @return void |
|
| 97 | 98 | */ |
| 98 | 99 | public function addField(string $fieldName, $value): void; |
| 99 | 100 | |
@@ -122,6 +123,7 @@ discard block |
||
| 122 | 123 | * The name of the field |
| 123 | 124 | * @param mixed $value |
| 124 | 125 | * The additional value of this field |
| 126 | + * @return void |
|
| 125 | 127 | */ |
| 126 | 128 | public function addMultiValueField(string $fieldName, $value): void; |
| 127 | 129 | |
@@ -133,6 +135,7 @@ discard block |
||
| 133 | 135 | * |
| 134 | 136 | * @param string $clazz |
| 135 | 137 | * The classname |
| 138 | + * @return void |
|
| 136 | 139 | */ |
| 137 | 140 | public function setEntityClass(string $clazz): void; |
| 138 | 141 | |
@@ -152,6 +155,7 @@ discard block |
||
| 152 | 155 | * |
| 153 | 156 | * @param mixed $id |
| 154 | 157 | * The ID of the corresponding entity |
| 158 | + * @return void |
|
| 155 | 159 | */ |
| 156 | 160 | public function setEntityId($id): void; |
| 157 | 161 | |
@@ -168,6 +172,7 @@ discard block |
||
| 168 | 172 | * hiding some programatically needed complexity from the user |
| 169 | 173 | * |
| 170 | 174 | * @param string $type |
| 175 | + * @return void |
|
| 171 | 176 | */ |
| 172 | 177 | public function setEntityType(string $type): void; |
| 173 | 178 | |
@@ -178,7 +183,6 @@ discard block |
||
| 178 | 183 | * |
| 179 | 184 | * If no entity type is set, the class will be used instead |
| 180 | 185 | * |
| 181 | - * @param string $type |
|
| 182 | 186 | */ |
| 183 | 187 | public function getEntityType(): string; |
| 184 | 188 | |
@@ -188,6 +192,7 @@ discard block |
||
| 188 | 192 | * <strong>note:</strong> This may not supported by the underlying implementation |
| 189 | 193 | * |
| 190 | 194 | * @param string $path |
| 195 | + * @return void |
|
| 191 | 196 | */ |
| 192 | 197 | public function setFile(string $path): void; |
| 193 | 198 | |
@@ -106,7 +106,7 @@ |
||
| 106 | 106 | * |
| 107 | 107 | * @param string $name |
| 108 | 108 | * Name of the property to set |
| 109 | - * @param mixed $value |
|
| 109 | + * @param string[] $value |
|
| 110 | 110 | * The value of the property |
| 111 | 111 | */ |
| 112 | 112 | public function __set($name, $value): void { |
@@ -40,5 +40,8 @@ |
||
| 40 | 40 | */ |
| 41 | 41 | public function getFacets(): array; |
| 42 | 42 | |
| 43 | + /** |
|
| 44 | + * @return void |
|
| 45 | + */ |
|
| 43 | 46 | public function addFacetValue(string $key, string $label, $value = null, int $increaseCounterBy = 1) : void; |
| 44 | 47 | } |
| 45 | 48 | \ No newline at end of file |
@@ -22,7 +22,6 @@ |
||
| 22 | 22 | /** |
| 23 | 23 | * Tries to create a document from the given object |
| 24 | 24 | * |
| 25 | - * @param object $object |
|
| 26 | 25 | * @return object Returns false if no document could be created |
| 27 | 26 | */ |
| 28 | 27 | public function getEntity(Document $document) : ?object; |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | /** |
| 62 | 62 | * Get annotation mapping configuration |
| 63 | 63 | * |
| 64 | - * @return \Doctrine\ORM\Configuration |
|
| 64 | + * @return \PHPUnit\Framework\MockObject\MockObject |
|
| 65 | 65 | */ |
| 66 | 66 | protected function getMockAnnotatedConfig() { |
| 67 | 67 | // We need to mock every method except the ones which |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | /** |
| 94 | 94 | * Creates default mapping driver |
| 95 | 95 | * |
| 96 | - * @return \Doctrine\ORM\Mapping\Driver\Driver |
|
| 96 | + * @return AnnotationDriver |
|
| 97 | 97 | */ |
| 98 | 98 | protected function getMetadataDriverImplementation() { |
| 99 | 99 | return new AnnotationDriver($_ENV['annotation_reader'], $this->getPaths()); |
@@ -77,6 +77,9 @@ |
||
| 77 | 77 | |
| 78 | 78 | } |
| 79 | 79 | |
| 80 | + /** |
|
| 81 | + * @param \StingerSoft\EntitySearchBundle\Services\DummySearchService $searchService |
|
| 82 | + */ |
|
| 80 | 83 | protected function getSearchController(?SearchService $searchService = null): SearchController { |
| 81 | 84 | $searchService = $searchService ?? $this->getDummySearchService(); |
| 82 | 85 | |
@@ -107,12 +107,14 @@ |
||
| 107 | 107 | * @see \StingerSoft\EntitySearchBundle\Services\Mapping\EntityToDocumentMapperInterface::createDocument() |
| 108 | 108 | */ |
| 109 | 109 | public function createDocument(ObjectManager $manager, object $object) : ?Document { |
| 110 | - if(!$this->isIndexable($object)) |
|
| 111 | - return null; |
|
| 110 | + if(!$this->isIndexable($object)) { |
|
| 111 | + return null; |
|
| 112 | + } |
|
| 112 | 113 | $document = $this->searchService->createEmptyDocumentFromEntity($object); |
| 113 | 114 | $index = $this->fillDocument($document, $object); |
| 114 | - if($index === false) |
|
| 115 | - return null; |
|
| 115 | + if($index === false) { |
|
| 116 | + return null; |
|
| 117 | + } |
|
| 116 | 118 | |
| 117 | 119 | return $document; |
| 118 | 120 | } |
@@ -131,7 +131,9 @@ |
||
| 131 | 131 | * @param LifecycleEventArgs $args |
| 132 | 132 | */ |
| 133 | 133 | public function postUpdate(LifecycleEventArgs $args): void { |
| 134 | - if(!$this->enableIndexing) return; |
|
| 134 | + if(!$this->enableIndexing) { |
|
| 135 | + return; |
|
| 136 | + } |
|
| 135 | 137 | $this->updateEntity($args->getObject(), $args->getObjectManager()); |
| 136 | 138 | } |
| 137 | 139 | |
@@ -52,8 +52,9 @@ |
||
| 52 | 52 | * @required |
| 53 | 53 | */ |
| 54 | 54 | public function setObjectManager(ObjectManager $om): void { |
| 55 | - if($this->objectManager) |
|
| 56 | - return; |
|
| 55 | + if($this->objectManager) { |
|
| 56 | + return; |
|
| 57 | + } |
|
| 57 | 58 | $this->objectManager = $om; |
| 58 | 59 | } |
| 59 | 60 | |