<?php
/**
* Finite Field Integer Base Class
*
* PHP version 5 and 7
*
* @category Math
* @package BigInteger
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2017 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
namespace phpseclib3\Math\Common\FiniteField;
/**
* Finite Field Integer
*
* @package Math
* @author Jim Wigginton <terrafrost@php.net>
* @access public
*/
abstract class Integer
{
}