N°4621 Fix naming inconsistencies in sources/*

This commit is contained in:
Pierre Goiffon
2021-12-31 15:21:08 +01:00
parent 16142bd979
commit 5f575d524a
192 changed files with 384 additions and 380 deletions

View File

@@ -0,0 +1,19 @@
<?php
/**
* @since 3.0.0
*/
interface iKeyboardShortcut
{
/**
* Return default keys combination to trigger shortcut element
* @return array
*/
public static function GetShortcutKeys(): array;
/**
* Element to be triggered when shortcut key combination is pressed
* @return string
*/
public static function GetShortcutTriggeredElementSelector(): string;
}