Skip to content

Commit d4887f2

Browse files
committed
🔧
1 parent 83daa48 commit d4887f2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.phan/config.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,6 @@
5555
],
5656
'suppress_issue_types' => [
5757
'PhanAccessMethodInternal',
58+
'PhanAccessOverridesFinalConstant',
5859
],
5960
];

src/Data/QRDataModeInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ interface QRDataModeInterface{
2020
/**
2121
* the current data mode: Number, Alphanum, Kanji, Hanzi, Byte, ECI
2222
*
23+
* tbh I hate this constant here, but it's part of the interface, so I can't just declare it in the abstract class.
24+
* phan will complain about a PhanAccessOverridesFinalConstant.
25+
*
2326
* @var int
27+
* @see \chillerlan\QRCode\Common\Mode
2428
*/
2529
public const DATAMODE = -1;
2630

0 commit comments

Comments
 (0)