N°3537 Code review

Thanks @Molkobain !
This commit is contained in:
Pierre Goiffon
2020-12-16 08:06:53 +01:00
parent cb4fb15b0a
commit a20fd2278f
4 changed files with 33 additions and 6 deletions

View File

@@ -28,9 +28,15 @@ class Input extends AbstractInput
return $this->sType;
}
public function SetType(string $sType): Input
/**
* @param string $sType
*
* @return $this
*/
public function SetType(string $sType)
{
$this->sType = $sType;
return $this;
}
}