Completed
Push — master ( e48710...5fe26c )
by Rafał
40:26 queued 26:25
created

SeoMediaManager   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 4

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 4
dl 10
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getMediaBasePath() 7 7 1

How to fix   Duplicated Code   

Duplicated Code

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:

1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the Superdesk Web Publisher Core Bundle.
7
 *
8
 * Copyright 2019 Sourcefabric z.u. and contributors.
9
 *
10
 * For the full copyright and license information, please see the
11
 * AUTHORS and LICENSE files distributed with this source code.
12
 *
13
 * @copyright 2019 Sourcefabric z.ú
14
 * @license http://www.superdesk.org/license
15
 */
16
17
namespace SWP\Bundle\CoreBundle\Manager;
18
19
use SWP\Bundle\CoreBundle\Manager\MediaManager as BaseMediaManager;
20
21 View Code Duplication
final class SeoMediaManager extends BaseMediaManager
22
{
23
    protected function getMediaBasePath(): string
24
    {
25
        $tenant = $this->tenantContext->getTenant();
26
        $pathElements = ['swp', $tenant->getOrganization()->getCode(), 'seo_images'];
27
28
        return implode('/', $pathElements);
29
    }
30
}
31