Blame view

src/Request/UserRequestClass.php 420 Bytes
574d7ed3   Benjamin Renard   First step to aut...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php 
/**
 * @class UserRequestClass
 * @brief Implementation of a RequestAbstractClass for a user request
 * @details
 */
class UserRequestClass extends RequestAbstractClass
{
	/*
	 * @brief Init a user request
	*/
	public function init()
	{
		//For the moment, nothing to do
		return TRUE;
	}
	
	/*
	 * @brief Run a user request
	 */
	public function run()
	{
		//For the moment, nothing to do
		return TRUE;
	}
}
?>