for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare (strict_types = 1);
namespace Phpml\Classifier;
use Phpml\Classifier\Traits\Predictable;
use Phpml\Classifier\Traits\Trainable;
class SupportVectorMachine implements Classifier
{
use Trainable, Predictable;
/**
* @param array $sample
*
* @return mixed
*/
protected function predictSample(array $sample)
$sample
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.