Skip to content

Commit

Permalink
Make CheckinValidator SS3.7 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBnl authored Jan 23, 2020
1 parent 19ca974 commit b560936
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/forms/CheckInValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

namespace Broarm\EventTickets;

use Object;
use SS_Object;

/**
* CheckInValidator.php
*
* @author Bram de Leeuw
* Date: 14/06/2017
*/
class CheckInValidator extends Object
class CheckInValidator extends SS_Object
{
const MESSAGE_ERROR = 'MESSAGE_ERROR';
const MESSAGE_NO_CODE = 'MESSAGE_NO_CODE';
Expand Down Expand Up @@ -141,4 +141,4 @@ public function getAttendee()
private static function message($message, $ticket = null) {
return _t("CheckInValidator.$message", $message, null, array('ticket' => $ticket));
}
}
}

0 comments on commit b560936

Please sign in to comment.