You are here

public function NoDependencyIterator::getChildren in Deploy - Content Staging 7.3

Same name and namespace in other branches
  1. 7.2 modules/deploy_auto_plan/plugins/iterator/deploy_auto_plan.NoDependencyIterator.class.php \NoDependencyIterator::getChildren()

We override this method since we need to return our own iterator.

Return value

DeployIterator

Overrides DeployIterator::getChildren

File

modules/deploy_auto_plan/plugins/iterator/deploy_auto_plan.NoDependencyIterator.class.php, line 29
NoDependencyIterator plugin class definition.

Class

NoDependencyIterator
Iterator class for when there are no dependencies to iterate through.

Code

public function getChildren() {
  return new EntityDependencyIterator(array(), $this);
}