plugins = $plugins; } /** * @return array */ public function to_array() { $result = array(); foreach ( $this->plugins as $plugin ) { $result[] = $plugin->to_array(); } return $result; } }