/home/vianto5/duettowers.mx/wp-content/plugins/code-snippets/php/Flat_Files
NameSizeModeActions
Handlers/-0755rm
Interfaces/-0755rm
Flat_File_Config_Repository.php27390644editdlrm
Handler_Registry.php12110644editdlrm
Snippet_Files.php204570644editdlrm
WP_Filesystem_Adapter.php36750644editdlrm
Edit: /home/vianto5/duettowers.mx/wp-content/plugins/code-snippets/php/Flat_Files/Handler_Registry.php (1211B)
$handler ) { $this->register_handler( $type, $handler ); } } /** * Registers a handler for a snippet type. * * @param string $type Handler key. * @param Snippet_Type_Handler $handler Handler class. * * @return void */ public function register_handler( string $type, Snippet_Type_Handler $handler ): void { $this->handlers[ $type ] = $handler; } /** * Gets the handler for a snippet type. * * @param string $type Handler key. * * @return Snippet_Type_Handler|null */ public function get_handler( string $type ): ?Snippet_Type_Handler { return $this->handlers[ $type ] ?? null; } }