ContentReviewOwner
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 9
c 0
b 0
f 0
1
<?php
2
3
namespace SilverStripe\ContentReview\Extensions;
4
5
use SilverStripe\CMS\Model\SiteTree;
6
use SilverStripe\ORM\DataExtension;
7
8
/**
9
 * Description of GroupContentReview.
10
 */
11
class ContentReviewOwner extends DataExtension
12
{
13
    /**
14
     * @var array
15
     */
16
    private static $many_many = array(
0 ignored issues
show
Unused Code introduced by
The property $many_many is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
17
        "SiteTreeContentReview" => SiteTree::class,
18
    );
19
}
20