This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/stubs/Base.php

27 lines
360 B
PHP

<?php
namespace Arma;
interface Base
{
function add($other);
function sub($other);
function mul($other);
function div($other);
function equals($others);
function notEquals($other);
function greaterThan($other);
function smallerThan($other);
function notGreaterThan($other);
function notSmallerThan($other);
}