1 | <?php |
||
5 | class TypeGuess extends Guess |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $type; |
||
11 | |||
12 | /** |
||
13 | * @param string $type |
||
14 | * @param int $confidence |
||
15 | */ |
||
16 | public function __construct($type, $confidence = self::LOW_CONFIDENCE) |
||
21 | |||
22 | /** |
||
23 | * @return string |
||
24 | */ |
||
25 | public function getType() |
||
29 | } |
||
30 |