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