Each CSV converter can set the certainty of their conversion.

This commit is contained in:
James Cole
2016-07-29 21:29:46 +02:00
parent e434de72a3
commit 7707c81b2d
2 changed files with 16 additions and 0 deletions

View File

@@ -40,6 +40,14 @@ class BasicConverter
return $this->certainty;
}
/**
* @param int $certainty
*/
protected function setCertainty(int $certainty)
{
$this->certainty = $certainty;
}
/**
* @param array $config
*/