Fix mini bugs

This commit is contained in:
Dennis Eichhorn 2017-08-10 20:41:46 +02:00
parent adadf9d198
commit 4e769fc979
2 changed files with 3 additions and 3 deletions

View File

@ -30,11 +30,11 @@ class NaiveBayesFilter
{
}
public function trainMatch($matched) \* : void *\
public function trainMatch($matched) /* : void */
{
}
public function trainMismatch($mismatch) \* : void *\
public function trainMismatch($mismatch) /* : void */
{
}

View File

@ -55,5 +55,5 @@ interface ValidatorInterface
*
* @since 1.0.0
*/
public static function getErrorCode() : int
public static function getErrorCode() : int;
}