This commit is contained in:
smiley
2023-03-16 11:50:25 +01:00
parent 83daa489cf
commit d4887f2676
2 changed files with 5 additions and 0 deletions
+1
View File
@@ -55,5 +55,6 @@ return [
],
'suppress_issue_types' => [
'PhanAccessMethodInternal',
'PhanAccessOverridesFinalConstant',
],
];
+4
View File
@@ -20,7 +20,11 @@ interface QRDataModeInterface{
/**
* the current data mode: Number, Alphanum, Kanji, Hanzi, Byte, ECI
*
* tbh I hate this constant here, but it's part of the interface, so I can't just declare it in the abstract class.
* phan will complain about a PhanAccessOverridesFinalConstant.
*
* @var int
* @see \chillerlan\QRCode\Common\Mode
*/
public const DATAMODE = -1;