Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like XmlDriver often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use XmlDriver, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
33 | class XmlDriver extends FileDriver |
||
34 | { |
||
35 | const DEFAULT_FILE_EXTENSION = '.dcm.xml'; |
||
36 | |||
37 | /** |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | 15 | public function __construct($locator, $fileExtension = self::DEFAULT_FILE_EXTENSION) |
|
44 | |||
45 | /** |
||
46 | * {@inheritDoc} |
||
47 | */ |
||
48 | 9 | public function loadMetadataForClass($className, ClassMetadata $class) |
|
49 | { |
||
50 | /* @var $class ClassMetadataInfo */ |
||
51 | /* @var $xmlRoot \SimpleXMLElement */ |
||
52 | 9 | $xmlRoot = $this->getElement($className); |
|
53 | 9 | if ( ! $xmlRoot) { |
|
54 | return; |
||
55 | } |
||
56 | |||
57 | 9 | if ($xmlRoot->getName() == 'document') { |
|
58 | 9 | if (isset($xmlRoot['repository-class'])) { |
|
59 | $class->setCustomRepositoryClass((string) $xmlRoot['repository-class']); |
||
60 | } |
||
61 | 3 | View Code Duplication | } elseif ($xmlRoot->getName() == 'mapped-superclass') { |
|
|||
62 | 2 | $class->setCustomRepositoryClass( |
|
63 | 2 | isset($xmlRoot['repository-class']) ? (string) $xmlRoot['repository-class'] : null |
|
64 | ); |
||
65 | 2 | $class->isMappedSuperclass = true; |
|
66 | 1 | } elseif ($xmlRoot->getName() == 'embedded-document') { |
|
67 | 1 | $class->isEmbeddedDocument = true; |
|
68 | 1 | } elseif ($xmlRoot->getName() == 'query-result-document') { |
|
69 | 1 | $class->isQueryResultDocument = true; |
|
70 | } |
||
71 | 9 | if (isset($xmlRoot['db'])) { |
|
72 | 4 | $class->setDatabase((string) $xmlRoot['db']); |
|
73 | } |
||
74 | 9 | if (isset($xmlRoot['collection'])) { |
|
75 | 8 | if (isset($xmlRoot['capped-collection'])) { |
|
76 | $config = array('name' => (string) $xmlRoot['collection']); |
||
77 | $config['capped'] = (bool) $xmlRoot['capped-collection']; |
||
78 | if (isset($xmlRoot['capped-collection-max'])) { |
||
79 | $config['max'] = (int) $xmlRoot['capped-collection-max']; |
||
80 | } |
||
81 | if (isset($xmlRoot['capped-collection-size'])) { |
||
82 | $config['size'] = (int) $xmlRoot['capped-collection-size']; |
||
83 | } |
||
84 | $class->setCollection($config); |
||
85 | } else { |
||
86 | 8 | $class->setCollection((string) $xmlRoot['collection']); |
|
87 | } |
||
88 | } |
||
89 | 9 | if (isset($xmlRoot['writeConcern'])) { |
|
90 | 1 | $class->setWriteConcern((string) $xmlRoot['writeConcern']); |
|
91 | } |
||
92 | 9 | if (isset($xmlRoot['inheritance-type'])) { |
|
93 | $inheritanceType = (string) $xmlRoot['inheritance-type']; |
||
94 | $class->setInheritanceType(constant(MappingClassMetadata::class . '::INHERITANCE_TYPE_' . $inheritanceType)); |
||
95 | } |
||
96 | 9 | View Code Duplication | if (isset($xmlRoot['change-tracking-policy'])) { |
97 | 2 | $class->setChangeTrackingPolicy(constant(MappingClassMetadata::class . '::CHANGETRACKING_' . strtoupper((string) $xmlRoot['change-tracking-policy']))); |
|
98 | } |
||
99 | 9 | if (isset($xmlRoot->{'discriminator-field'})) { |
|
100 | 1 | $discrField = $xmlRoot->{'discriminator-field'}; |
|
101 | /* XSD only allows for "name", which is consistent with association |
||
102 | * configurations, but fall back to "fieldName" for BC. |
||
103 | */ |
||
104 | 1 | $class->setDiscriminatorField( |
|
105 | 1 | isset($discrField['name']) ? (string) $discrField['name'] : (string) $discrField['fieldName'] |
|
106 | ); |
||
107 | } |
||
108 | 9 | View Code Duplication | if (isset($xmlRoot->{'discriminator-map'})) { |
109 | 1 | $map = array(); |
|
110 | 1 | foreach ($xmlRoot->{'discriminator-map'}->{'discriminator-mapping'} AS $discrMapElement) { |
|
111 | 1 | $map[(string) $discrMapElement['value']] = (string) $discrMapElement['class']; |
|
112 | } |
||
113 | 1 | $class->setDiscriminatorMap($map); |
|
114 | } |
||
115 | 9 | if (isset($xmlRoot->{'default-discriminator-value'})) { |
|
116 | 1 | $class->setDefaultDiscriminatorValue((string) $xmlRoot->{'default-discriminator-value'}['value']); |
|
117 | } |
||
118 | 9 | if (isset($xmlRoot->{'indexes'})) { |
|
119 | 3 | foreach ($xmlRoot->{'indexes'}->{'index'} as $index) { |
|
120 | 3 | $this->addIndex($class, $index); |
|
121 | } |
||
122 | } |
||
123 | 9 | if (isset($xmlRoot->{'shard-key'})) { |
|
124 | 1 | $this->setShardKey($class, $xmlRoot->{'shard-key'}[0]); |
|
125 | } |
||
126 | 9 | if (isset($xmlRoot['require-indexes'])) { |
|
127 | 1 | $class->setRequireIndexes('true' === (string) $xmlRoot['require-indexes']); |
|
128 | } |
||
129 | 9 | if (isset($xmlRoot['slave-okay'])) { |
|
130 | 1 | $class->setSlaveOkay('true' === (string) $xmlRoot['slave-okay']); |
|
131 | } |
||
132 | 9 | if (isset($xmlRoot->field)) { |
|
133 | 9 | foreach ($xmlRoot->field as $field) { |
|
134 | 9 | $mapping = array(); |
|
135 | 9 | $attributes = $field->attributes(); |
|
136 | 9 | foreach ($attributes as $key => $value) { |
|
137 | 9 | $mapping[$key] = (string) $value; |
|
138 | 9 | $booleanAttributes = array('id', 'reference', 'embed', 'unique', 'sparse', 'file', 'distance'); |
|
139 | 9 | if (in_array($key, $booleanAttributes)) { |
|
140 | 9 | $mapping[$key] = ('true' === $mapping[$key]); |
|
141 | } |
||
142 | } |
||
143 | 9 | if (isset($mapping['id']) && $mapping['id'] === true && isset($mapping['strategy'])) { |
|
144 | 3 | $mapping['options'] = array(); |
|
145 | 3 | if (isset($field->{'id-generator-option'})) { |
|
146 | 1 | foreach ($field->{'id-generator-option'} as $generatorOptions) { |
|
147 | 1 | $attributesGenerator = iterator_to_array($generatorOptions->attributes()); |
|
148 | 1 | if (isset($attributesGenerator['name']) && isset($attributesGenerator['value'])) { |
|
149 | 1 | $mapping['options'][(string) $attributesGenerator['name']] = (string) $attributesGenerator['value']; |
|
150 | } |
||
151 | } |
||
152 | } |
||
153 | } |
||
154 | |||
155 | 9 | if (isset($attributes['not-saved'])) { |
|
156 | $mapping['notSaved'] = ('true' === (string) $attributes['not-saved']); |
||
157 | } |
||
158 | |||
159 | 9 | if (isset($attributes['also-load'])) { |
|
160 | $mapping['alsoLoadFields'] = explode(',', $attributes['also-load']); |
||
161 | 9 | } elseif (isset($attributes['version'])) { |
|
162 | 1 | $mapping['version'] = ('true' === (string) $attributes['version']); |
|
163 | 9 | } elseif (isset($attributes['lock'])) { |
|
164 | 1 | $mapping['lock'] = ('true' === (string) $attributes['lock']); |
|
165 | } |
||
166 | |||
167 | 9 | $this->addFieldMapping($class, $mapping); |
|
168 | } |
||
169 | } |
||
170 | 9 | if (isset($xmlRoot->{'embed-one'})) { |
|
171 | 2 | foreach ($xmlRoot->{'embed-one'} as $embed) { |
|
172 | 2 | $this->addEmbedMapping($class, $embed, 'one'); |
|
173 | } |
||
174 | } |
||
175 | 9 | if (isset($xmlRoot->{'embed-many'})) { |
|
176 | 2 | foreach ($xmlRoot->{'embed-many'} as $embed) { |
|
177 | 2 | $this->addEmbedMapping($class, $embed, 'many'); |
|
178 | } |
||
179 | } |
||
180 | 9 | if (isset($xmlRoot->{'reference-many'})) { |
|
181 | 4 | foreach ($xmlRoot->{'reference-many'} as $reference) { |
|
182 | 4 | $this->addReferenceMapping($class, $reference, 'many'); |
|
183 | } |
||
184 | } |
||
185 | 9 | if (isset($xmlRoot->{'reference-one'})) { |
|
186 | 3 | foreach ($xmlRoot->{'reference-one'} as $reference) { |
|
187 | 3 | $this->addReferenceMapping($class, $reference, 'one'); |
|
188 | } |
||
189 | } |
||
190 | 9 | if (isset($xmlRoot->{'lifecycle-callbacks'})) { |
|
191 | 2 | foreach ($xmlRoot->{'lifecycle-callbacks'}->{'lifecycle-callback'} as $lifecycleCallback) { |
|
192 | 2 | $class->addLifecycleCallback((string) $lifecycleCallback['method'], constant('Doctrine\ODM\MongoDB\Events::' . (string) $lifecycleCallback['type'])); |
|
193 | } |
||
194 | } |
||
195 | 9 | if (isset($xmlRoot->{'also-load-methods'})) { |
|
196 | 1 | foreach ($xmlRoot->{'also-load-methods'}->{'also-load-method'} as $alsoLoadMethod) { |
|
197 | 1 | $class->registerAlsoLoadMethod((string) $alsoLoadMethod['method'], (string) $alsoLoadMethod['field']); |
|
198 | } |
||
199 | } |
||
200 | 9 | } |
|
201 | |||
202 | 10 | private function addFieldMapping(ClassMetadataInfo $class, $mapping) |
|
243 | |||
244 | 2 | private function addEmbedMapping(ClassMetadataInfo $class, $embed, $type) |
|
245 | { |
||
246 | 2 | $attributes = $embed->attributes(); |
|
247 | 2 | $defaultStrategy = $type == 'one' ? ClassMetadataInfo::STORAGE_STRATEGY_SET : CollectionHelper::DEFAULT_STRATEGY; |
|
248 | $mapping = array( |
||
249 | 2 | 'type' => $type, |
|
250 | 'embedded' => true, |
||
251 | 2 | 'targetDocument' => isset($attributes['target-document']) ? (string) $attributes['target-document'] : null, |
|
252 | 2 | 'collectionClass' => isset($attributes['collection-class']) ? (string) $attributes['collection-class'] : null, |
|
253 | 2 | 'name' => (string) $attributes['field'], |
|
254 | 2 | 'strategy' => isset($attributes['strategy']) ? (string) $attributes['strategy'] : $defaultStrategy, |
|
255 | ); |
||
256 | 2 | if (isset($attributes['fieldName'])) { |
|
257 | 1 | $mapping['fieldName'] = (string) $attributes['fieldName']; |
|
258 | } |
||
259 | 2 | View Code Duplication | if (isset($embed->{'discriminator-field'})) { |
260 | 1 | $attr = $embed->{'discriminator-field'}; |
|
261 | 1 | $mapping['discriminatorField'] = (string) $attr['name']; |
|
262 | } |
||
263 | 2 | View Code Duplication | if (isset($embed->{'discriminator-map'})) { |
264 | 1 | foreach ($embed->{'discriminator-map'}->{'discriminator-mapping'} as $discriminatorMapping) { |
|
265 | 1 | $attr = $discriminatorMapping->attributes(); |
|
266 | 1 | $mapping['discriminatorMap'][(string) $attr['value']] = (string) $attr['class']; |
|
267 | } |
||
268 | } |
||
269 | 2 | if (isset($embed->{'default-discriminator-value'})) { |
|
270 | 1 | $mapping['defaultDiscriminatorValue'] = (string) $embed->{'default-discriminator-value'}['value']; |
|
271 | } |
||
272 | 2 | if (isset($attributes['not-saved'])) { |
|
273 | $mapping['notSaved'] = ('true' === (string) $attributes['not-saved']); |
||
274 | } |
||
275 | 2 | if (isset($attributes['also-load'])) { |
|
276 | $mapping['alsoLoadFields'] = explode(',', $attributes['also-load']); |
||
277 | } |
||
278 | 2 | $this->addFieldMapping($class, $mapping); |
|
279 | 2 | } |
|
280 | |||
281 | 5 | private function addReferenceMapping(ClassMetadataInfo $class, $reference, $type) |
|
282 | { |
||
283 | 5 | $cascade = array_keys((array) $reference->cascade); |
|
284 | 5 | if (1 === count($cascade)) { |
|
285 | 2 | $cascade = current($cascade) ?: next($cascade); |
|
286 | } |
||
287 | 5 | $attributes = $reference->attributes(); |
|
288 | 5 | $defaultStrategy = $type == 'one' ? ClassMetadataInfo::STORAGE_STRATEGY_SET : CollectionHelper::DEFAULT_STRATEGY; |
|
289 | $mapping = array( |
||
290 | 5 | 'cascade' => $cascade, |
|
291 | 5 | 'orphanRemoval' => isset($attributes['orphan-removal']) ? ('true' === (string) $attributes['orphan-removal']) : false, |
|
292 | 5 | 'type' => $type, |
|
293 | 'reference' => true, |
||
294 | 5 | 'simple' => isset($attributes['simple']) ? ('true' === (string) $attributes['simple']) : false, // deprecated |
|
295 | 5 | 'storeAs' => isset($attributes['store-as']) ? (string) $attributes['store-as'] : ClassMetadataInfo::REFERENCE_STORE_AS_DB_REF_WITH_DB, |
|
296 | 5 | 'targetDocument' => isset($attributes['target-document']) ? (string) $attributes['target-document'] : null, |
|
297 | 5 | 'collectionClass' => isset($attributes['collection-class']) ? (string) $attributes['collection-class'] : null, |
|
298 | 5 | 'name' => (string) $attributes['field'], |
|
299 | 5 | 'strategy' => isset($attributes['strategy']) ? (string) $attributes['strategy'] : $defaultStrategy, |
|
300 | 5 | 'inversedBy' => isset($attributes['inversed-by']) ? (string) $attributes['inversed-by'] : null, |
|
301 | 5 | 'mappedBy' => isset($attributes['mapped-by']) ? (string) $attributes['mapped-by'] : null, |
|
302 | 5 | 'repositoryMethod' => isset($attributes['repository-method']) ? (string) $attributes['repository-method'] : null, |
|
303 | 5 | 'limit' => isset($attributes['limit']) ? (integer) $attributes['limit'] : null, |
|
304 | 5 | 'skip' => isset($attributes['skip']) ? (integer) $attributes['skip'] : null, |
|
305 | 'prime' => [], |
||
306 | ); |
||
307 | |||
308 | 5 | if (isset($attributes['fieldName'])) { |
|
309 | 1 | $mapping['fieldName'] = (string) $attributes['fieldName']; |
|
310 | } |
||
311 | 5 | View Code Duplication | if (isset($reference->{'discriminator-field'})) { |
312 | 1 | $attr = $reference->{'discriminator-field'}; |
|
313 | 1 | $mapping['discriminatorField'] = (string) $attr['name']; |
|
314 | } |
||
315 | 5 | View Code Duplication | if (isset($reference->{'discriminator-map'})) { |
316 | 1 | foreach ($reference->{'discriminator-map'}->{'discriminator-mapping'} as $discriminatorMapping) { |
|
317 | 1 | $attr = $discriminatorMapping->attributes(); |
|
318 | 1 | $mapping['discriminatorMap'][(string) $attr['value']] = (string) $attr['class']; |
|
319 | } |
||
320 | } |
||
321 | 5 | if (isset($reference->{'default-discriminator-value'})) { |
|
322 | 1 | $mapping['defaultDiscriminatorValue'] = (string) $reference->{'default-discriminator-value'}['value']; |
|
323 | } |
||
324 | 5 | if (isset($reference->{'sort'})) { |
|
325 | View Code Duplication | foreach ($reference->{'sort'}->{'sort'} as $sort) { |
|
326 | $attr = $sort->attributes(); |
||
327 | $mapping['sort'][(string) $attr['field']] = isset($attr['order']) ? (string) $attr['order'] : 'asc'; |
||
328 | } |
||
329 | } |
||
330 | 5 | if (isset($reference->{'criteria'})) { |
|
331 | View Code Duplication | foreach ($reference->{'criteria'}->{'criteria'} as $criteria) { |
|
332 | $attr = $criteria->attributes(); |
||
333 | $mapping['criteria'][(string) $attr['field']] = (string) $attr['value']; |
||
334 | } |
||
335 | } |
||
336 | 5 | if (isset($attributes['not-saved'])) { |
|
337 | $mapping['notSaved'] = ('true' === (string) $attributes['not-saved']); |
||
338 | } |
||
339 | 5 | if (isset($attributes['also-load'])) { |
|
340 | $mapping['alsoLoadFields'] = explode(',', $attributes['also-load']); |
||
341 | } |
||
342 | 5 | if (isset($reference->{'prime'})) { |
|
343 | 1 | foreach ($reference->{'prime'}->{'field'} as $field) { |
|
344 | 1 | $attr = $field->attributes(); |
|
345 | 1 | $mapping['prime'][] = (string) $attr['name']; |
|
346 | } |
||
347 | } |
||
348 | |||
349 | 5 | $this->addFieldMapping($class, $mapping); |
|
350 | 5 | } |
|
351 | |||
352 | 3 | private function addIndex(ClassMetadataInfo $class, \SimpleXmlElement $xmlIndex) |
|
353 | { |
||
354 | 3 | $attributes = $xmlIndex->attributes(); |
|
355 | |||
356 | 3 | $keys = array(); |
|
357 | |||
358 | 3 | View Code Duplication | foreach ($xmlIndex->{'key'} as $key) { |
359 | 3 | $keys[(string) $key['name']] = isset($key['order']) ? (string) $key['order'] : 'asc'; |
|
360 | } |
||
361 | |||
362 | 3 | $options = array(); |
|
363 | |||
364 | 3 | if (isset($attributes['background'])) { |
|
365 | $options['background'] = ('true' === (string) $attributes['background']); |
||
366 | } |
||
367 | 3 | if (isset($attributes['drop-dups'])) { |
|
368 | $options['dropDups'] = ('true' === (string) $attributes['drop-dups']); |
||
369 | } |
||
370 | 3 | if (isset($attributes['name'])) { |
|
371 | $options['name'] = (string) $attributes['name']; |
||
372 | } |
||
373 | 3 | if (isset($attributes['safe'])) { |
|
374 | $options['safe'] = ('true' === (string) $attributes['safe']); |
||
375 | } |
||
376 | 3 | if (isset($attributes['sparse'])) { |
|
377 | $options['sparse'] = ('true' === (string) $attributes['sparse']); |
||
378 | } |
||
379 | 3 | if (isset($attributes['unique'])) { |
|
380 | 1 | $options['unique'] = ('true' === (string) $attributes['unique']); |
|
381 | } |
||
382 | |||
383 | 3 | View Code Duplication | if (isset($xmlIndex->{'option'})) { |
384 | 1 | foreach ($xmlIndex->{'option'} as $option) { |
|
385 | 1 | $value = (string) $option['value']; |
|
386 | 1 | if ($value === 'true') { |
|
387 | $value = true; |
||
388 | 1 | } elseif ($value === 'false') { |
|
389 | 1 | $value = false; |
|
390 | 1 | } elseif (is_numeric($value)) { |
|
391 | 1 | $value = preg_match('/^[-]?\d+$/', $value) ? (integer) $value : (float) $value; |
|
392 | } |
||
393 | 1 | $options[(string) $option['name']] = $value; |
|
394 | } |
||
395 | } |
||
396 | |||
397 | 3 | if (isset($xmlIndex->{'partial-filter-expression'})) { |
|
398 | 3 | $partialFilterExpressionMapping = $xmlIndex->{'partial-filter-expression'}; |
|
399 | |||
400 | 3 | if (isset($partialFilterExpressionMapping->and)) { |
|
401 | 2 | foreach ($partialFilterExpressionMapping->and as $and) { |
|
402 | 2 | if (! isset($and->field)) { |
|
403 | 1 | continue; |
|
404 | } |
||
405 | |||
406 | 2 | $partialFilterExpression = $this->getPartialFilterExpression($and->field); |
|
407 | 2 | if (! $partialFilterExpression) { |
|
408 | continue; |
||
409 | } |
||
410 | |||
411 | 2 | $options['partialFilterExpression']['$and'][] = $partialFilterExpression; |
|
412 | } |
||
413 | } elseif (isset($partialFilterExpressionMapping->field)) { |
||
414 | 2 | $partialFilterExpression = $this->getPartialFilterExpression($partialFilterExpressionMapping->field); |
|
415 | |||
416 | 2 | if ($partialFilterExpression) { |
|
417 | 2 | $options['partialFilterExpression'] = $partialFilterExpression; |
|
418 | } |
||
419 | } |
||
420 | } |
||
421 | |||
422 | 3 | $class->addIndex($keys, $options); |
|
423 | 3 | } |
|
424 | |||
425 | 3 | private function getPartialFilterExpression(\SimpleXMLElement $fields) |
|
426 | { |
||
427 | 3 | $partialFilterExpression = []; |
|
428 | 3 | foreach ($fields as $field) { |
|
429 | 3 | $operator = (string) $field['operator'] ?: null; |
|
430 | |||
431 | 3 | if (! isset($field['value'])) { |
|
432 | 1 | if (! isset($field->field)) { |
|
433 | continue; |
||
434 | } |
||
435 | |||
436 | 1 | $nestedExpression = $this->getPartialFilterExpression($field->field); |
|
437 | 1 | if (! $nestedExpression) { |
|
438 | continue; |
||
439 | } |
||
440 | |||
441 | 1 | $value = $nestedExpression; |
|
442 | } else { |
||
443 | 3 | $value = trim((string) $field['value']); |
|
444 | } |
||
445 | |||
446 | 3 | if ($value === 'true') { |
|
447 | $value = true; |
||
448 | 3 | } elseif ($value === 'false') { |
|
449 | $value = false; |
||
450 | 3 | } elseif (is_numeric($value)) { |
|
451 | 2 | $value = preg_match('/^[-]?\d+$/', $value) ? (integer) $value : (float) $value; |
|
452 | } |
||
453 | |||
454 | 3 | $partialFilterExpression[(string) $field['name']] = $operator ? ['$' . $operator => $value] : $value; |
|
455 | } |
||
456 | |||
457 | 3 | return $partialFilterExpression; |
|
458 | } |
||
459 | |||
460 | 2 | private function setShardKey(ClassMetadataInfo $class, \SimpleXmlElement $xmlShardkey) |
|
461 | { |
||
462 | 2 | $attributes = $xmlShardkey->attributes(); |
|
463 | |||
464 | 2 | $keys = array(); |
|
465 | 2 | $options = array(); |
|
466 | 2 | View Code Duplication | foreach ($xmlShardkey->{'key'} as $key) { |
467 | 2 | $keys[(string) $key['name']] = isset($key['order']) ? (string)$key['order'] : 'asc'; |
|
468 | } |
||
469 | |||
470 | 2 | if (isset($attributes['unique'])) { |
|
471 | 1 | $options['unique'] = ('true' === (string) $attributes['unique']); |
|
472 | } |
||
473 | |||
474 | 2 | if (isset($attributes['numInitialChunks'])) { |
|
475 | 1 | $options['numInitialChunks'] = (int) $attributes['numInitialChunks']; |
|
476 | } |
||
477 | |||
478 | 2 | View Code Duplication | if (isset($xmlShardkey->{'option'})) { |
479 | 1 | foreach ($xmlShardkey->{'option'} as $option) { |
|
480 | 1 | $value = (string) $option['value']; |
|
481 | 1 | if ($value === 'true') { |
|
482 | 1 | $value = true; |
|
483 | 1 | } elseif ($value === 'false') { |
|
484 | $value = false; |
||
485 | 1 | } elseif (is_numeric($value)) { |
|
486 | 1 | $value = preg_match('/^[-]?\d+$/', $value) ? (integer) $value : (float) $value; |
|
487 | } |
||
488 | 1 | $options[(string) $option['name']] = $value; |
|
489 | } |
||
490 | } |
||
491 | |||
492 | 2 | $class->setShardKey($keys, $options); |
|
493 | 2 | } |
|
494 | |||
495 | /** |
||
496 | * {@inheritDoc} |
||
497 | */ |
||
498 | 9 | protected function loadMappingFile($file) |
|
514 | } |
||
515 |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.