OpenSkill\Datatable\Data\ResponseData::totalDataCount PHP Method

totalDataCount() public method

public totalDataCount ( ) : integer
return 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