$component the component to be built * @param array $options parameters for building * * @return string */ public static function build($component, array $options = []) { $tmp = []; foreach ($component as $componentPart) { $tmp[] = $componentPart[0] . ' ' . $componentPart[1]; } return implode(' ', $tmp); } }