Fix const for php 7.1

This commit is contained in:
Dennis Eichhorn 2017-09-03 21:15:27 +02:00
parent d14bb89583
commit 3bfc05d5f2
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ namespace phpOMS\Utils\EDI\AnsiX12;
*/
class InterchangeControlHeader
{
const COMPONENT_ELEMENT_SEPARATOR = '>';
/* private */ const COMPONENT_ELEMENT_SEPARATOR = '>';
private $interchangeControlHeader = InterchangeControlHeader::ISA;

View File

@ -26,7 +26,7 @@ namespace phpOMS\Utils\EDI\AnsiX12\Purchase\PurchaseOrder;
*/
class TransactionSetHeader
{
const IDENTIFIER = 'ST';
/* private */ const IDENTIFIER = 'ST';
private $transactionSetIdentifierCode = 850;