From 80e9d9da6ec5a16d222910a97ca5b79d30a1da8f Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Mon, 19 Jan 2015 00:50:43 +0100 Subject: Inital commit --- Kernel/System/ResponseChangeDefaultTo.pm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Kernel/System/ResponseChangeDefaultTo.pm (limited to 'Kernel/System') diff --git a/Kernel/System/ResponseChangeDefaultTo.pm b/Kernel/System/ResponseChangeDefaultTo.pm new file mode 100644 index 0000000..7ba02a9 --- /dev/null +++ b/Kernel/System/ResponseChangeDefaultTo.pm @@ -0,0 +1,25 @@ +# -- +# Kernel/System/ResponseChangeDefaultTo.pm - core module +# Copyright (C) 2015 Alexander Sulfrian +# -- +# This software comes with ABSOLUTELY NO WARRANTY. For details, see +# the enclosed file COPYING for license information (AGPL). If you +# did not receive this file, see http://www.gnu.org/licenses/agpl.txt. +# -- + +package Kernel::System::ResponseChangeDefaultTo; + +use strict; +use warnings; + +sub new { + my ( $Type, %Param ) = @_; + + # allocate new hash for object + my $Self = {}; + bless ($Self, $Type); + + return $Self; +} + +1; -- cgit v1.2.3-1-g7c22