X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=blobdiff_plain;f=includes%2FLinker.php;h=071f95e51712889611e599eac5799db1219b9ce4;hb=f141d25d1a3e3b125c87f023f3e26dd061740e40;hp=b2bc220854c33d98897927e1c337182a7df8dc85;hpb=eec846227dfaf62cf59cc8a458008f5f4473d9cc;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Linker.php b/includes/Linker.php index b2bc220854..071f95e517 100644 --- a/includes/Linker.php +++ b/includes/Linker.php @@ -2361,20 +2361,3 @@ class Linker { } -/** - * @since 1.18 - */ -class DummyLinker { - - /** - * Use PHP's magic __call handler to transform instance calls to a dummy instance - * into static calls to the new Linker for backwards compatibility. - * - * @param string $fname Name of called method - * @param array $args Arguments to the method - * @return mixed - */ - public function __call( $fname, $args ) { - return call_user_func_array( [ 'Linker', $fname ], $args ); - } -}