From df28656d0d9d47bfb4b328f5b7ab506cb9740db0 Mon Sep 17 00:00:00 2001 From: Arkadiusz Kondas Date: Mon, 12 Dec 2016 18:11:57 +0100 Subject: [PATCH] Fixes after new php-cs-fixer v2.0 --- src/Phpml/Regression/SVR.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Phpml/Regression/SVR.php b/src/Phpml/Regression/SVR.php index 78c57cb..e32eeb0 100644 --- a/src/Phpml/Regression/SVR.php +++ b/src/Phpml/Regression/SVR.php @@ -23,7 +23,7 @@ class SVR extends SupportVectorMachine implements Regression */ public function __construct( int $kernel = Kernel::RBF, int $degree = 3, float $epsilon = 0.1, float $cost = 1.0, - float $gamma = null, float $coef0 = 0.0, float $tolerance = 0.001, + float $gamma = null, float $coef0 = 0.0, float $tolerance = 0.001, int $cacheSize = 100, bool $shrinking = true ) { parent::__construct(Type::EPSILON_SVR, $kernel, $cost, 0.5, $degree, $gamma, $coef0, $epsilon, $tolerance, $cacheSize, $shrinking, false);