andersondanilo/CnabPHP

View on GitHub
src/Cnab/Retorno/Linha.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Cnab\Retorno;

class Linha
{
    /**
     * @var int
     */
    public $pos;

    /**
     * @var string
     */
    public $texto;

    /**
     * @var \Cnab\Format\Linha
     */
    public $linhaCnab;
}