Fix input naming

This commit is contained in:
Gianluigi 'cocciagialla' Mammarella 2019-04-10 07:29:27 +02:00
parent 7802a0d19f
commit cdf77dacd8
1 changed files with 1 additions and 2 deletions

View File

@ -63,8 +63,7 @@ class Method
public function addInput($name, $type)
{
$inName = $this->name;
$this->input = new Message($inName);
$this->input = new Message($name);
$this->input->add($name, $type);
}