1: <?php
2: /**
3: * Null request object.
4: *
5: * Useful for filter tests that don't use the request object.
6: *
7: * @category Horde
8: * @package Controller
9: * @author Bob McKee <bob@bluestatedigital.com>
10: * @license http://www.horde.org/licenses/bsd BSD
11: */
12: class Horde_Controller_Request_Null implements Horde_Controller_Request
13: {
14: /**
15: */
16: public function getMethod()
17: {
18: }
19:
20: /**
21: */
22: public function getPath()
23: {
24: }
25:
26: /**
27: */
28: public function getParameters()
29: {
30: }
31:
32: /**
33: */
34: public function getGetVars()
35: {
36: }
37:
38: /**
39: */
40: public function getFileVars()
41: {
42: }
43:
44: /**
45: */
46: public function getServerVars()
47: {
48: }
49:
50: /**
51: */
52: public function getPostVars()
53: {
54: }
55:
56: /**
57: */
58: public function getCookieVars()
59: {
60: }
61:
62: /**
63: */
64: public function getRequestVars()
65: {
66: }
67:
68: /**
69: */
70: public function getSessionId()
71: {
72: }
73: }
74: