Completed
Push — master ( bbb282...43d0b8 )
by Daniel
25s
created

LeftAndMainExtension::augmentNewSiteTreeItem()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace SilverStripe\Admin;
4
5
use Extension;
6
7
8
/**
9
 * Plug-ins for additional functionality in your LeftAndMain classes.
10
 *
11
 * @package framework
12
 * @subpackage admin
13
 */
14
abstract class LeftAndMainExtension extends Extension {
15
16
	public function init() {
17
	}
18
19
	public function accessedCMS() {
20
	}
21
22
	public function augmentNewSiteTreeItem(&$item) {
0 ignored issues
show
Unused Code introduced by
The parameter $item is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
23
	}
24
25
}
26