* @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace VDM\Joomla\Componentbuilder\Compiler\Interfaces; /** * Compiler Header Interface * * @since 3.2.0 */ interface HeaderInterface { /** * Get the headers for a file * * @param string $context The name of the context * @param string $codeName The view, views, or layout code name * * @return string The header string to place in the header of the file * @since 3.2.0 */ public function get(string $context, string $codeName): string; }