ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Composite.php
Go to the documentation of this file.
1 <?php
2 
7 {
8 
13  protected $strategies = array();
14 
21  public function execute($tokens, $config, $context)
22  {
23  foreach ($this->strategies as $strategy) {
24  $tokens = $strategy->execute($tokens, $config, $context);
25  }
26  return $tokens;
27  }
28 }
29 
30 // vim: et sw=4 sts=4