From 4e769fc9794b79a1b860235965d7aa07b82440cf Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 10 Aug 2017 20:41:46 +0200 Subject: [PATCH] Fix mini bugs --- Math/Stochastic/NaiveBayesFilter.php | 4 ++-- Validation/ValidatorInterface.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Math/Stochastic/NaiveBayesFilter.php b/Math/Stochastic/NaiveBayesFilter.php index 128688bdb..99bcee44c 100644 --- a/Math/Stochastic/NaiveBayesFilter.php +++ b/Math/Stochastic/NaiveBayesFilter.php @@ -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 */ { } diff --git a/Validation/ValidatorInterface.php b/Validation/ValidatorInterface.php index 22a695d5b..33589fdfb 100644 --- a/Validation/ValidatorInterface.php +++ b/Validation/ValidatorInterface.php @@ -55,5 +55,5 @@ interface ValidatorInterface * * @since 1.0.0 */ - public static function getErrorCode() : int + public static function getErrorCode() : int; }