OpenSkill\Datatable\Data\ResponseData::totalDataCount PHP Метод

totalDataCount() публичный Метод

public totalDataCount ( ) : integer
Результат integer
    public function totalDataCount()
    {
        return $this->totalDataCount;
    }

Usage Example

Пример #1
0
 public function testResponseDataCustomFilteredLength()
 {
     $rp = new ResponseData(new Collection([]), 456, 123);
     $this->assertSame(456, $rp->totalDataCount());
     $this->assertSame(123, $rp->filteredDataCount());
     $this->assertEquals(new Collection([]), $rp->data());
 }
All Usage Examples Of OpenSkill\Datatable\Data\ResponseData::totalDataCount