mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 10:18:39 +00:00
16 lines
241 B
PHP
16 lines
241 B
PHP
<?php
|
|
|
|
interface NumberInterface
|
|
{
|
|
public function add($number);
|
|
|
|
public function sub($number);
|
|
|
|
public function mult($number);
|
|
|
|
public function div($number);
|
|
|
|
public function pow($p);
|
|
|
|
public function abs($number);
|
|
} |