Upgrade 1-11.38

This commit is contained in:
xesmyd
2026-03-30 14:10:30 +02:00
parent f2a7e6d1fc
commit ac648ef29d
24665 changed files with 69682 additions and 2205004 deletions
-10
View File
@@ -26,29 +26,21 @@ abstract class Guess
{
/**
* Marks an instance with a value that is extremely likely to be correct.
*
* @var int
*/
const VERY_HIGH_CONFIDENCE = 3;
/**
* Marks an instance with a value that is very likely to be correct.
*
* @var int
*/
const HIGH_CONFIDENCE = 2;
/**
* Marks an instance with a value that is likely to be correct.
*
* @var int
*/
const MEDIUM_CONFIDENCE = 1;
/**
* Marks an instance with a value that may be correct.
*
* @var int
*/
const LOW_CONFIDENCE = 0;
@@ -88,8 +80,6 @@ abstract class Guess
}
/**
* Constructor.
*
* @param int $confidence The confidence
*
* @throws InvalidArgumentException if the given value of confidence is unknown