for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace EdifactParser\Tests\Unit\Segments;
/**
* Fake Segment which does not implements the SegmentInterface.
*
* @psalm-immutable
*/
final class NONFakeSegment
{
public array $rawValues;
private function __construct(array $rawValues)
$this->rawValues = $rawValues;
}