mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-15 07:33:04 +01:00
20 lines
316 B
PHP
20 lines
316 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\DataProviders;
|
||
|
|
||
|
use Omnipay\Rotessa\Object\Frequency;
|
||
|
|
||
|
final class Frequencies
|
||
|
{
|
||
|
public static function get() : array {
|
||
|
return Frequency::getTypes();
|
||
|
}
|
||
|
|
||
|
public static function getFromType() {
|
||
|
|
||
|
}
|
||
|
public static function getOnePayment() {
|
||
|
return Frequency::ONCE;
|
||
|
}
|
||
|
}
|