ClientInterface
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  
autorun() 0 1 ?
1
<?php
2
namespace Redaxscript\Client;
3
4
/**
5
 * interface to define a client class
6
 *
7
 * @since 4.0.0
8
 *
9
 * @package Redaxscript
10
 * @category Client
11
 * @author Henry Ruhs
12
 */
13
14
interface ClientInterface
15
{
16
	/**
17
	 * automate run
18
	 *
19
	 * @since 4.0.0
20
	 */
21
22
	public function autorun();
23
}
24