Code Duplication    Length = 40-43 lines in 2 locations

src/Hydra/ApiDocumentationBuilder.php 1 location

@@ 358-397 (lines=40) @@
355
     *
356
     * @return string|null
357
     */
358
    private function getRange(PropertyMetadata $propertyMetadata)
359
    {
360
        $type = $propertyMetadata->getType();
361
        if (!$type) {
362
            return;
363
        }
364
365
        if ($type->isCollection() && $collectionType = $type->getCollectionValueType()) {
366
            $type = $collectionType;
367
        }
368
369
        switch ($type->getBuiltinType()) {
370
            case Type::BUILTIN_TYPE_STRING:
371
                return 'xmls:string';
372
373
            case Type::BUILTIN_TYPE_INT:
374
                return 'xmls:integer';
375
376
            case Type::BUILTIN_TYPE_FLOAT:
377
                return 'xmls:number';
378
379
            case Type::BUILTIN_TYPE_BOOL:
380
                return 'xmls:boolean';
381
382
            case Type::BUILTIN_TYPE_OBJECT:
383
                $className = $type->getClassName();
384
385
                if ($className) {
386
                    if (is_subclass_of($className, \DateTimeInterface::class)) {
387
                        return 'xmls:dateTime';
388
                    }
389
390
                    $className = $type->getClassName();
391
                    if ($this->resourceClassResolver->isResourceClass($className)) {
392
                        return sprintf('#%s', $this->resourceMetadataFactory->create($className)->getShortName());
393
                    }
394
                }
395
           break;
396
        }
397
    }
398
399
    /**
400
     * Builds the JSON-LD context for the API documentation.

src/Swagger/ApiDocumentationBuilder.php 1 location

@@ 300-342 (lines=43) @@
297
     *
298
     * @return string|null
299
     */
300
    private function getRange(PropertyMetadata $propertyMetadata)
301
    {
302
        $type = $propertyMetadata->getType();
303
        if (!$type) {
304
            return;
305
        }
306
307
        if ($type->isCollection() && $collectionType = $type->getCollectionValueType()) {
308
            $type = $collectionType;
309
        }
310
311
        switch ($type->getBuiltinType()) {
312
            case Type::BUILTIN_TYPE_STRING:
313
                return 'string';
314
315
            case Type::BUILTIN_TYPE_INT:
316
                return 'integer';
317
318
            case Type::BUILTIN_TYPE_FLOAT:
319
                return 'number';
320
321
            case Type::BUILTIN_TYPE_BOOL:
322
                return 'boolean';
323
324
            case Type::BUILTIN_TYPE_OBJECT:
325
                $className = $type->getClassName();
326
327
                if ($className) {
328
                    if (is_subclass_of($className, \DateTimeInterface::class)) {
329
                        return 'string';
330
                    }
331
332
                    $className = $type->getClassName();
333
                    if ($this->resourceClassResolver->isResourceClass($className)) {
334
                        return ['$ref' => sprintf('#/definitions/%s', $this->resourceMetadataFactory->create($className)->getShortName())];
335
                    }
336
                }
337
            break;
338
            default:
339
                return 'null';
340
            break;
341
        }
342
    }
343
}
344