@@ -34,28 +34,28 @@ class QRCode{
34
34
public const MASK_PATTERN_AUTO = -1 ;
35
35
36
36
/**
37
- * @deprecated 5.0.0
37
+ * @deprecated 5.0.0 use EccLevel::L instead
38
38
* @see \chillerlan\QRCode\Common\EccLevel::L
39
39
* @var int
40
40
*/
41
41
public const ECC_L = EccLevel::L;
42
42
43
43
/**
44
- * @deprecated 5.0.0
44
+ * @deprecated 5.0.0 use EccLevel::M instead
45
45
* @see \chillerlan\QRCode\Common\EccLevel::M
46
46
* @var int
47
47
*/
48
48
public const ECC_M = EccLevel::M;
49
49
50
50
/**
51
- * @deprecated 5.0.0
51
+ * @deprecated 5.0.0 use EccLevel::Q instead
52
52
* @see \chillerlan\QRCode\Common\EccLevel::Q
53
53
* @var int
54
54
*/
55
55
public const ECC_Q = EccLevel::Q;
56
56
57
57
/**
58
- * @deprecated 5.0.0
58
+ * @deprecated 5.0.0 use EccLevel::H instead
59
59
* @see \chillerlan\QRCode\Common\EccLevel::H
60
60
* @var int
61
61
*/
@@ -223,7 +223,7 @@ protected function initCustomOutputInterface():QROutputInterface{
223
223
/**
224
224
* checks if a string qualifies as numeric (convenience method)
225
225
*
226
- * @deprecated 5.0.0
226
+ * @deprecated 5.0.0 use Number::validateString() instead
227
227
* @see \chillerlan\QRCode\Data\Number::validateString()
228
228
* @codeCoverageIgnore
229
229
*/
@@ -234,7 +234,7 @@ public function isNumber(string $string):bool{
234
234
/**
235
235
* checks if a string qualifies as alphanumeric (convenience method)
236
236
*
237
- * @deprecated 5.0.0
237
+ * @deprecated 5.0.0 use AlphaNum::validateString() instead
238
238
* @see \chillerlan\QRCode\Data\AlphaNum::validateString()
239
239
* @codeCoverageIgnore
240
240
*/
@@ -245,7 +245,7 @@ public function isAlphaNum(string $string):bool{
245
245
/**
246
246
* checks if a string qualifies as Kanji (convenience method)
247
247
*
248
- * @deprecated 5.0.0
248
+ * @deprecated 5.0.0 use Kanji::validateString() instead
249
249
* @see \chillerlan\QRCode\Data\Kanji::validateString()
250
250
* @codeCoverageIgnore
251
251
*/
@@ -256,7 +256,7 @@ public function isKanji(string $string):bool{
256
256
/**
257
257
* a dummy (convenience method)
258
258
*
259
- * @deprecated 5.0.0
259
+ * @deprecated 5.0.0 use Byte::validateString() instead
260
260
* @see \chillerlan\QRCode\Data\Byte::validateString()
261
261
* @codeCoverageIgnore
262
262
*/
0 commit comments