Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 46fc4c4 + 2c84ac2 commit 538591cCopy full SHA for 538591c
src/Symfony/Component/Form/Guess/ValueGuess.php
@@ -18,19 +18,14 @@
18
*/
19
class ValueGuess extends Guess
20
{
21
- /**
22
- * The guessed value.
23
- *
24
- * @var array
25
- */
26
private $value;
27
28
/**
29
* Constructor.
30
*
31
- * @param string $value The guessed value
32
- * @param int $confidence The confidence that the guessed class name
33
- * is correct
+ * @param string|int|bool|null $value The guessed value
+ * @param int $confidence The confidence that the guessed class name
+ * is correct
34
35
public function __construct($value, $confidence)
36
@@ -42,7 +37,7 @@ public function __construct($value, $confidence)
42
37
43
38
* Returns the guessed value.
44
39
45
- * @return mixed
40
+ * @return string|int|bool|null
46
41
47
public function getValue()
48
0 commit comments