Eduardokum\LaravelBoleto\Cnab\Retorno\Cnab240\Trailer::__get PHP Method

__get() public method

Fast get method.
public __get ( $name )
$name
    public function __get($name)
    {
        if (property_exists($this, $name)) {
            $method = 'get' . ucwords($name);
            return $this->{$method}();
        }
    }