Skip to content

Commit 3531b63

Browse files
committed
🚿 +deprecation reasons
1 parent 8c75d8b commit 3531b63

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/QRCode.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,28 +34,28 @@ class QRCode{
3434
public const MASK_PATTERN_AUTO = -1;
3535

3636
/**
37-
* @deprecated 5.0.0
37+
* @deprecated 5.0.0 use EccLevel::L instead
3838
* @see \chillerlan\QRCode\Common\EccLevel::L
3939
* @var int
4040
*/
4141
public const ECC_L = EccLevel::L;
4242

4343
/**
44-
* @deprecated 5.0.0
44+
* @deprecated 5.0.0 use EccLevel::M instead
4545
* @see \chillerlan\QRCode\Common\EccLevel::M
4646
* @var int
4747
*/
4848
public const ECC_M = EccLevel::M;
4949

5050
/**
51-
* @deprecated 5.0.0
51+
* @deprecated 5.0.0 use EccLevel::Q instead
5252
* @see \chillerlan\QRCode\Common\EccLevel::Q
5353
* @var int
5454
*/
5555
public const ECC_Q = EccLevel::Q;
5656

5757
/**
58-
* @deprecated 5.0.0
58+
* @deprecated 5.0.0 use EccLevel::H instead
5959
* @see \chillerlan\QRCode\Common\EccLevel::H
6060
* @var int
6161
*/
@@ -223,7 +223,7 @@ protected function initCustomOutputInterface():QROutputInterface{
223223
/**
224224
* checks if a string qualifies as numeric (convenience method)
225225
*
226-
* @deprecated 5.0.0
226+
* @deprecated 5.0.0 use Number::validateString() instead
227227
* @see \chillerlan\QRCode\Data\Number::validateString()
228228
* @codeCoverageIgnore
229229
*/
@@ -234,7 +234,7 @@ public function isNumber(string $string):bool{
234234
/**
235235
* checks if a string qualifies as alphanumeric (convenience method)
236236
*
237-
* @deprecated 5.0.0
237+
* @deprecated 5.0.0 use AlphaNum::validateString() instead
238238
* @see \chillerlan\QRCode\Data\AlphaNum::validateString()
239239
* @codeCoverageIgnore
240240
*/
@@ -245,7 +245,7 @@ public function isAlphaNum(string $string):bool{
245245
/**
246246
* checks if a string qualifies as Kanji (convenience method)
247247
*
248-
* @deprecated 5.0.0
248+
* @deprecated 5.0.0 use Kanji::validateString() instead
249249
* @see \chillerlan\QRCode\Data\Kanji::validateString()
250250
* @codeCoverageIgnore
251251
*/
@@ -256,7 +256,7 @@ public function isKanji(string $string):bool{
256256
/**
257257
* a dummy (convenience method)
258258
*
259-
* @deprecated 5.0.0
259+
* @deprecated 5.0.0 use Byte::validateString() instead
260260
* @see \chillerlan\QRCode\Data\Byte::validateString()
261261
* @codeCoverageIgnore
262262
*/

0 commit comments

Comments
 (0)