Fix PHP Fatal error: Can't inherit abstract function

CommonNumRefGenerator::getExample() (previously declared abstract in
ModeleProductCode)
This commit is contained in:
Laurent Destailleur
2024-09-03 09:55:28 +02:00
parent e07a15a3e2
commit adfefb010f

View File

@@ -210,5 +210,5 @@ abstract class ModeleProductCode extends CommonNumRefGenerator
* @param int<-1,2> $type Type of third party (1:customer, 2:supplier, -1:autodetect)
* @return string Return string example
*/
abstract public function getExample($langs = null, $objproduct = '', $type = -1);
//abstract public function getExample($langs = null, $objproduct = '', $type = -1);
}