SVC::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 12
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 9

How to fix   Many Parameters   

Many Parameters

Methods with many parameters are not only hard to understand, but their parameters also often become inconsistent when you need more, or different data.

There are several approaches to avoid long parameter lists:

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Phpml\Classification;
6
7
use Phpml\SupportVectorMachine\Kernel;
8
use Phpml\SupportVectorMachine\SupportVectorMachine;
9
use Phpml\SupportVectorMachine\Type;
10
11
class SVC extends SupportVectorMachine implements Classifier
12
{
13
    public function __construct(
14
        int $kernel = Kernel::RBF,
15
        float $cost = 1.0,
16
        int $degree = 3,
17
        ?float $gamma = null,
18
        float $coef0 = 0.0,
19
        float $tolerance = 0.001,
20
        int $cacheSize = 100,
21
        bool $shrinking = true,
22
        bool $probabilityEstimates = false
23
    ) {
24
        parent::__construct(Type::C_SVC, $kernel, $cost, 0.5, $degree, $gamma, $coef0, 0.1, $tolerance, $cacheSize, $shrinking, $probabilityEstimates);
25
    }
26
}
27