Passed
Push — master ( 35deb2...555729 )
by Jean-Christophe
03:41
created

HtmlUtils   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A stylesheetInclude() 0 2 1
A javascriptInclude() 0 2 1
1
<?php
2
3
namespace Ajax\common\html\html5;
4
5
class HtmlUtils {
6
	public static function javascriptInclude($url){
7
		return '<script src="'.$url.'"></script>';
8
	}
9
	
10
	public static function stylesheetInclude($url){
11
		return '<link rel="stylesheet" type="text/css" href="'.$url.'">';
12
	}
13
}
14