Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | declare(strict_types=1); |
| 3 | /** |
| 4 | * Pop PHP Framework (https://www.popphp.org/) |
| 5 | * |
| 6 | * @link https://github.com/popphp/popphp-framework |
| 7 | * @author Nick Sagona, III <nick@popphp.org> |
| 8 | * @copyright Copyright (c) 2009-2026 Nick Sagona, III |
| 9 | * @license https://www.popphp.org/license New BSD License |
| 10 | */ |
| 11 | |
| 12 | /** |
| 13 | * @namespace |
| 14 | */ |
| 15 | namespace Pop\Parser; |
| 16 | |
| 17 | /** |
| 18 | * Result interface |
| 19 | * |
| 20 | * @category Pop |
| 21 | * @package Pop\Parser |
| 22 | * @author Nick Sagona, III <nick@popphp.org> |
| 23 | * @copyright Copyright (c) 2009-2026 Nick Sagona, III |
| 24 | * @license https://www.popphp.org/license New BSD License |
| 25 | * @version 1.0.0 |
| 26 | */ |
| 27 | interface ResultInterface |
| 28 | { |
| 29 | |
| 30 | /** |
| 31 | * To array method |
| 32 | * |
| 33 | * @return array |
| 34 | */ |
| 35 | public function toArray(): array; |
| 36 | |
| 37 | /** |
| 38 | * Get confidence score |
| 39 | * |
| 40 | * @return float |
| 41 | */ |
| 42 | public function getConfidence(): float; |
| 43 | |
| 44 | /** |
| 45 | * Whether the confidence score meets or exceeds the given threshold |
| 46 | * |
| 47 | * @param float $threshold |
| 48 | * @return bool |
| 49 | */ |
| 50 | public function isConfident(float $threshold = 0.7): bool; |
| 51 | |
| 52 | } |