* @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\Architecture\Model; /** * Model Can Edit State Interface * * @since 3.2.0 */ interface CanEditStateInterface { /** * Get Can Edit State Function Code * * @param string $nameSingleCode The single code name of the view. * * @since 3.2.0 * @return string The can edit state method code */ public function get(string $nameSingleCode): string; }