interface AllDocsInterface in Replication 8
Same name and namespace in other branches
- 8.2 src/AllDocs/AllDocsInterface.php \Drupal\replication\AllDocs\AllDocsInterface
Hierarchy
- interface \Drupal\replication\AllDocs\AllDocsInterface
Expanded class hierarchy of AllDocsInterface
All classes that implement AllDocsInterface
1 file declares its use of AllDocsInterface
- AllDocsFactoryTest.php in tests/
src/ Kernel/ AllDocsFactoryTest.php
File
- src/
AllDocs/ AllDocsInterface.php, line 5
Namespace
Drupal\replication\AllDocsView source
interface AllDocsInterface {
/**
* @param boolean $include_docs
* @return \Drupal\replication\AllDocs\AllDocsInterface
*/
public function includeDocs($include_docs);
/**
* @param int $limit
* @return \Drupal\replication\AllDocs\AllDocsInterface
*/
public function limit($limit);
/**
* @param int $skip
* @return \Drupal\replication\AllDocs\AllDocsInterface
*/
public function skip($skip);
/**
* @param boolean $descending
* @return \Drupal\replication\AllDocs\AllDocsInterface
*/
public function descending($descending);
/**
* @param string $key
* @return \Drupal\replication\AllDocs\AllDocsInterface
*/
public function startKey($key);
/**
* @param string $key
* @return \Drupal\replication\AllDocs\AllDocsInterface
*/
public function endKey($key);
/**
* @param boolean $inclusive_end
* @return \Drupal\replication\AllDocs\AllDocsInterface
*/
public function inclusiveEnd($inclusive_end);
/**
* @return array
*/
public function execute();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AllDocsInterface:: |
public | function | 1 | |
AllDocsInterface:: |
public | function | 1 | |
AllDocsInterface:: |
public | function | 1 | |
AllDocsInterface:: |
public | function | 1 | |
AllDocsInterface:: |
public | function | 1 | |
AllDocsInterface:: |
public | function | 1 | |
AllDocsInterface:: |
public | function | 1 | |
AllDocsInterface:: |
public | function | 1 |