Skip to content

Commit e5514cd

Browse files
committed
Added missing interfaces
1 parent fc50a5d commit e5514cd

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

src/OpCacheGUI/Network/RequestData.php

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,20 @@ public function path();
4242
* @return string The verb used by the request
4343
*/
4444
public function getVerb();
45+
46+
/**
47+
* Gets a post variable
48+
*
49+
* @param string $name The name of the post variable to get
50+
*
51+
* @return mixed The value
52+
*/
53+
public function post($name);
54+
55+
/**
56+
* Gets the current URL
57+
*
58+
* @return string The current URL
59+
*/
60+
public function getUrl();
4561
}

0 commit comments

Comments
 (0)