Skip to content
This repository has been archived by the owner on Oct 30, 2020. It is now read-only.

Commit

Permalink
Adds crypt types for purchasing
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Paul committed Oct 19, 2016
1 parent d614320 commit 25dbe76
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Crypt.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

namespace CraigPaul\Moneris;

class Crypt
{
const MAIL_TELEPHONE_SINGLE = 1;
const MAIL_TELEPHONE_RECURRING = 2;
const MAIL_TELEPHONE_INSTALLMENT = 3;
const MAIL_TELEPHONE_UNKNOWN = 4;
const AUTHENTICATED_E_COMMERCE = 5;
const NON_AUTHENTICATED_E_COMMERCE = 6;
const SSL_ENABLED_MERCHANT = 7;
const NON_SECURE = 8;
const NON_AUTHENTICATED = 9;
}

0 comments on commit 25dbe76

Please sign in to comment.