@@ -32,7 +32,7 @@ |
||
| 32 | 32 | * @see \StingerSoft\EntitySearchBundle\Services\SearchService::setObjectManager() |
| 33 | 33 | */ |
| 34 | 34 | public function setObjectManager(ObjectManager $om) { |
| 35 | - if($this->objectManager) return; |
|
| 35 | + if ($this->objectManager) return; |
|
| 36 | 36 | $this->objectManager = $om; |
| 37 | 37 | } |
| 38 | 38 | |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | * |
| 52 | 52 | * @see \StingerSoft\EntitySearchBundle\Model\SearchableEntity::indexEntity() |
| 53 | 53 | */ |
| 54 | - public function indexEntity(Document &$document) { |
|
| 54 | + public function indexEntity(Document&$document) { |
|
| 55 | 55 | $document->addField(Document::FIELD_TITLE, $this->getTitle()); |
| 56 | 56 | return true; |
| 57 | 57 | } |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | ); |
| 45 | 45 | $config = null === $config ? $this->getMockAnnotatedConfig() : $config; |
| 46 | 46 | $em = EntityManager::create($conn, $config, $evm ?: $this->getEventManager()); |
| 47 | - $schema = array_map(function ($class) use ($em) { |
|
| 47 | + $schema = array_map(function($class) use ($em) { |
|
| 48 | 48 | return $em->getClassMetadata($class); |
| 49 | 49 | }, (array)$this->getUsedEntityFixtures()); |
| 50 | 50 | $schemaTool = new SchemaTool($em); |
@@ -65,13 +65,13 @@ discard block |
||
| 65 | 65 | $refl = new \ReflectionClass($configurationClass); |
| 66 | 66 | $methods = $refl->getMethods(); |
| 67 | 67 | $mockMethods = array(); |
| 68 | - foreach($methods as $method) { |
|
| 69 | - if($method->name !== 'addFilter' && $method->name !== 'getFilterClassName') { |
|
| 68 | + foreach ($methods as $method) { |
|
| 69 | + if ($method->name !== 'addFilter' && $method->name !== 'getFilterClassName') { |
|
| 70 | 70 | $mockMethods[] = $method->name; |
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | $config = $this->getMock($configurationClass, $mockMethods); |
| 74 | - $config->expects($this->once())->method('getProxyDir')->will($this->returnValue(__DIR__ . '/../../temp')); |
|
| 74 | + $config->expects($this->once())->method('getProxyDir')->will($this->returnValue(__DIR__.'/../../temp')); |
|
| 75 | 75 | $config->expects($this->once())->method('getProxyNamespace')->will($this->returnValue('Proxy')); |
| 76 | 76 | $config->expects($this->any())->method('getDefaultQueryHints')->will($this->returnValue(array())); |
| 77 | 77 | $config->expects($this->once())->method('getAutoGenerateProxyClasses')->will($this->returnValue(true)); |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | $configuration = new Configuration(); |
| 32 | 32 | $this->processConfiguration($configuration, $configs); |
| 33 | 33 | |
| 34 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 34 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 35 | 35 | $loader->load('services.yml'); |
| 36 | 36 | } |
| 37 | 37 | } |
@@ -24,5 +24,5 @@ |
||
| 24 | 24 | * The document object to be filled with information |
| 25 | 25 | * @return bool If this entity returns <code>false</code> no information will be indexed |
| 26 | 26 | */ |
| 27 | - public function indexEntity(Document &$document); |
|
| 27 | + public function indexEntity(Document&$document); |
|
| 28 | 28 | } |
| 29 | 29 | \ No newline at end of file |
@@ -55,11 +55,11 @@ |
||
| 55 | 55 | * @see \StingerSoft\EntitySearchBundle\Model\Document::addMultiValueField() |
| 56 | 56 | */ |
| 57 | 57 | public function addMultiValueField($field, $value) { |
| 58 | - if(!array_key_exists($field, $this->fields)) { |
|
| 58 | + if (!array_key_exists($field, $this->fields)) { |
|
| 59 | 59 | $this->fields[$field] = array( |
| 60 | 60 | $value |
| 61 | 61 | ); |
| 62 | - } else if(!in_array($value, $this->fields[$field])) { |
|
| 62 | + } else if (!in_array($value, $this->fields[$field])) { |
|
| 63 | 63 | $this->fields[$field][] = $value; |
| 64 | 64 | } |
| 65 | 65 | } |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | * |
| 52 | 52 | * @see \StingerSoft\EntitySearchBundle\Model\SearchableEntity::indexEntity() |
| 53 | 53 | */ |
| 54 | - public function indexEntity(Document &$document) { |
|
| 54 | + public function indexEntity(Document&$document) { |
|
| 55 | 55 | $document->addField(Document::FIELD_TITLE, $this->getTitle()); |
| 56 | 56 | return true; |
| 57 | 57 | } |
@@ -30,10 +30,10 @@ discard block |
||
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | public function addFacetValue($key, $value, $increaseCounterBy = 1) { |
| 33 | - if(!isset($this->facets[$key])){ |
|
| 33 | + if (!isset($this->facets[$key])) { |
|
| 34 | 34 | $this->facets[$key] = array(); |
| 35 | 35 | } |
| 36 | - if(!isset($this->facets[$key][$value])){ |
|
| 36 | + if (!isset($this->facets[$key][$value])) { |
|
| 37 | 37 | $this->facets[$key][$value] = 0; |
| 38 | 38 | } |
| 39 | 39 | $this->facets[$key][$value] = $this->facets[$key][$value] + $increaseCounterBy; |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | * @see \StingerSoft\EntitySearchBundle\Model\Result\FacetSet::getFacet() |
| 47 | 47 | */ |
| 48 | 48 | public function getFacet($key) { |
| 49 | - if(isset($this->facets[$key])) { |
|
| 49 | + if (isset($this->facets[$key])) { |
|
| 50 | 50 | return $this->facets[$key]; |
| 51 | 51 | } else { |
| 52 | 52 | return; |
@@ -46,18 +46,18 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public function __construct(SearchService $searchService, array $mapping = array()) { |
| 48 | 48 | $this->searchService = $searchService; |
| 49 | - foreach($mapping as $key => $config) { |
|
| 50 | - if(!isset($config['mappings'])) { |
|
| 51 | - throw new \InvalidArgumentException($key . ' has no mapping defined!'); |
|
| 49 | + foreach ($mapping as $key => $config) { |
|
| 50 | + if (!isset($config['mappings'])) { |
|
| 51 | + throw new \InvalidArgumentException($key.' has no mapping defined!'); |
|
| 52 | 52 | } |
| 53 | - if(!isset($config['persistence'])) { |
|
| 54 | - throw new \InvalidArgumentException($key . ' has no persistence defined!'); |
|
| 53 | + if (!isset($config['persistence'])) { |
|
| 54 | + throw new \InvalidArgumentException($key.' has no persistence defined!'); |
|
| 55 | 55 | } |
| 56 | - if(!isset($config['persistence']['model'])) { |
|
| 57 | - throw new \InvalidArgumentException($key . ' has no model defined!'); |
|
| 56 | + if (!isset($config['persistence']['model'])) { |
|
| 57 | + throw new \InvalidArgumentException($key.' has no model defined!'); |
|
| 58 | 58 | } |
| 59 | 59 | $map = array(); |
| 60 | - foreach($config['mappings'] as $fieldKey => $fieldConfig) { |
|
| 60 | + foreach ($config['mappings'] as $fieldKey => $fieldConfig) { |
|
| 61 | 61 | $map[$fieldKey] = isset($fieldConfig['propertyPath']) && $fieldConfig['propertyPath'] ? $fieldConfig['propertyPath'] : $fieldKey; |
| 62 | 62 | } |
| 63 | 63 | |
@@ -72,10 +72,10 @@ discard block |
||
| 72 | 72 | * @return boolean |
| 73 | 73 | */ |
| 74 | 74 | public function isIndexable($object) { |
| 75 | - if($object instanceof SearchableEntity) { |
|
| 75 | + if ($object instanceof SearchableEntity) { |
|
| 76 | 76 | return true; |
| 77 | 77 | } |
| 78 | - if(count($this->getMapping($object)) > 0) { |
|
| 78 | + if (count($this->getMapping($object)) > 0) { |
|
| 79 | 79 | return true; |
| 80 | 80 | } |
| 81 | 81 | return false; |
@@ -89,11 +89,11 @@ discard block |
||
| 89 | 89 | * @return boolean|Document Returns false if no document could be created |
| 90 | 90 | */ |
| 91 | 91 | public function createDocument(ObjectManager $manager, $object) { |
| 92 | - if(!$this->isIndexable($object)) |
|
| 92 | + if (!$this->isIndexable($object)) |
|
| 93 | 93 | return false; |
| 94 | 94 | $document = $this->getSearchService($manager)->createEmptyDocumentFromEntity($object); |
| 95 | 95 | $index = $this->fillDocument($document, $object); |
| 96 | - if($index == false) |
|
| 96 | + if ($index == false) |
|
| 97 | 97 | return false; |
| 98 | 98 | |
| 99 | 99 | return $document; |
@@ -106,13 +106,13 @@ discard block |
||
| 106 | 106 | * @param object $object |
| 107 | 107 | * @return boolean |
| 108 | 108 | */ |
| 109 | - protected function fillDocument(Document &$document, $object) { |
|
| 110 | - if($object instanceof SearchableEntity) { |
|
| 109 | + protected function fillDocument(Document&$document, $object) { |
|
| 110 | + if ($object instanceof SearchableEntity) { |
|
| 111 | 111 | return $object->indexEntity($document); |
| 112 | 112 | } |
| 113 | 113 | $mapping = $this->getMapping($object); |
| 114 | 114 | $accessor = PropertyAccess::createPropertyAccessor(); |
| 115 | - foreach($mapping as $fieldName => $propertyPath) { |
|
| 115 | + foreach ($mapping as $fieldName => $propertyPath) { |
|
| 116 | 116 | $document->addField($fieldName, $accessor->getValue($object, $propertyPath)); |
| 117 | 117 | } |
| 118 | 118 | return true; |
@@ -126,15 +126,15 @@ discard block |
||
| 126 | 126 | */ |
| 127 | 127 | protected function getMapping($object) { |
| 128 | 128 | $clazz = get_class($object); |
| 129 | - if(isset($this->cachedMapping[$clazz])) { |
|
| 129 | + if (isset($this->cachedMapping[$clazz])) { |
|
| 130 | 130 | return $this->cachedMapping[$clazz]; |
| 131 | 131 | } |
| 132 | 132 | $ref = new \ReflectionClass($clazz); |
| 133 | 133 | |
| 134 | 134 | $mapping = array(); |
| 135 | 135 | |
| 136 | - foreach($this->mapping as $className => $config) { |
|
| 137 | - if($clazz == $className || $ref->isSubclassOf($className)) { |
|
| 136 | + foreach ($this->mapping as $className => $config) { |
|
| 137 | + if ($clazz == $className || $ref->isSubclassOf($className)) { |
|
| 138 | 138 | $mapping = array_merge($mapping, $config); |
| 139 | 139 | } |
| 140 | 140 | } |