Exemplo n.º 1
0
 /**
  * @param string $name
  * @return mixed
  */
 public function getPostParam($name)
 {
     return $this->request->getPostVar($name);
 }
Exemplo n.º 2
0
 public function testGetPostVarWasNotFound()
 {
     $var = $this->object->getPostVar('falsetest');
     $this->assertNull($var);
 }