File "RemembersChunkOffset.php"

Full Path: /home/fundopuh/trader.fxex.org/vendor/maatwebsite/excel/src/Concerns/RemembersChunkOffset.php
File size: 425 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Maatwebsite\Excel\Concerns;

trait RemembersChunkOffset
{
    /**
     * @var int|null
     */
    protected $chunkOffset;

    /**
     * @param  int  $chunkOffset
     */
    public function setChunkOffset(int $chunkOffset)
    {
        $this->chunkOffset = $chunkOffset;
    }

    /**
     * @return int|null
     */
    public function getChunkOffset()
    {
        return $this->chunkOffset;
    }
}