SiteMap
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 8
ccs 0
cts 0
cp 0
1
<?php
2
namespace WebOfTalent\PageSiteMap;
3
4
class SiteMap extends \Page
5
{
6
  // hide from menus and search
7
    private static $defaults = array(
0 ignored issues
show
Unused Code introduced by
The property $defaults 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...
8
    'ShowInMenus' => 0,
9
    'ShowInSearch' => 0,
10
    );
11
}
12