PageRenderer
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 13
c 0
b 0
f 0
wmc 0
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
renderPage() 0 1 ?
1
<?php
2
3
namespace SubPageList\Lister\UI\PageRenderer;
4
5
use SubPageList\Lister\Page;
6
7
/**
8
 * @since 1.2
9
 *
10
 * @licence GNU GPL v2+
11
 * @author Jeroen De Dauw < [email protected] >
12
 */
13
abstract class PageRenderer {
14
15
	/**
16
	 * Render the representation for a page.
17
	 * This does not include doing the same for all its sub pages.
18
	 *
19
	 * @param Page $page
20
	 *
21
	 * @return string
22
	 */
23
	public abstract function renderPage( Page $page );
24
25
}