Completed
Pull Request — develop (#147)
by Wachter
14:07
created

ArticlePageBridge   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getWebspaceKey() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of Sulu.
5
 *
6
 * (c) MASSIVE ART WebServices GmbH
7
 *
8
 * This source file is subject to the MIT license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
12
namespace Sulu\Bundle\ArticleBundle\Document\Structure;
13
14
use Sulu\Component\Content\Compat\Structure\StructureBridge;
15
16
/**
17
 * Own structure bridge for articles.
18
 */
19
class ArticlePageBridge extends StructureBridge
0 ignored issues
show
Deprecated Code introduced by
The class Sulu\Component\Content\C...ructure\StructureBridge has been deprecated with message: Should be replaced by a proper StructureInterface implementation

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
20
{
21
    /**
22
     * {@inheritdoc}
23
     */
24
    public function getWebspaceKey()
25
    {
26
        return;
27
    }
28
}
29