ServerInterface
last analyzed

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
getOutput() 0 1 ?
1
<?php
2
namespace Redaxscript\Server;
3
4
/**
5
 * interface to define a server class
6
 *
7
 * @since 4.0.0
8
 *
9
 * @package Redaxscript
10
 * @category Server
11
 * @author Henry Ruhs
12
 */
13
14
interface ServerInterface
15
{
16
	/**
17
	 * get the output
18
	 *
19
	 * @since 4.0.0
20
	 */
21
22
	public function getOutput();
23
}
24