You are here

public function CacheDecoratedDataProvider::count in RESTful 7.2

Counts the total results for the index call.

Return value

int The total number of results for the index call.

Overrides CrudInterface::count

File

src/Plugin/resource/DataProvider/CacheDecoratedDataProvider.php, line 170
Contains \Drupal\restful\Plugin\resource\DataProvider\CacheDecoratedDataProvider.

Class

CacheDecoratedDataProvider
Class CacheDecoratedDataProvider.

Namespace

Drupal\restful\Plugin\resource\DataProvider

Code

public function count() {
  return $this->subject
    ->count();
}