. namespace repository_googledocs\local\node; /** * The googledocs repository content node interface. * * @package repository_googledocs * @copyright 2021 Mihail Geshoski * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ interface node { /** * Create a repository node array. * * This method returns an array which structure is compatible to represent a content node (file/folder) * in the repository. * * @return array|null The node array or null if the node could not be created */ public function create_node_array(): ?array; }