Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add array segments initialization on record type C and D
  • Loading branch information
rembertoloanny committed Feb 19, 2019
commit 91017db64948a4cee3235cbd5af7b52f98852b72
2 changes: 1 addition & 1 deletion src/PHPFileManager/Document/CPA005/LogicalRecord/TypeC.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class TypeC extends Base implements LogicalRecordTypeInterface, LogicalSegmentIn
* Logical Record Segments
* @var array
*/
protected $segments;
protected $segments = array();

/**
* Add segment(s) to logical record
Expand Down
2 changes: 1 addition & 1 deletion src/PHPFileManager/Document/CPA005/LogicalRecord/TypeD.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class TypeD extends Base implements LogicalRecordTypeInterface, LogicalSegmentIn
* Logical Record Segments
* @var array
*/
protected $segments;
protected $segments = array();

/**
* Add segment(s) to logical record
Expand Down