You are here

public function TestResultSet::getResultSet in Webform Scheduled Tasks 8.2

Get an iterator for a set of results matching the conditions of the plugin.

Return value

\Iterator An iterator for all results that match the conditions of the plugin.

Overrides ResultSetPluginInterface::getResultSet

File

tests/modules/webform_scheduled_tasks_test_types/src/Plugin/WebformScheduledTasks/ResultSet/TestResultSet.php, line 20

Class

TestResultSet
A test result set.

Namespace

Drupal\webform_scheduled_tasks_test_types\Plugin\WebformScheduledTasks\ResultSet

Code

public function getResultSet() {
  return new \ArrayIterator([]);
}