| Server IP : 162.214.74.102 / Your IP : 216.73.216.192 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/erp/vendor/braintree/braintree_php/lib/Braintree/ |
Upload File : |
<?php
namespace Braintree;
class SubscriptionSearch
{
public static function billingCyclesRemaining()
{
return new RangeNode('billing_cycles_remaining');
}
public static function daysPastDue()
{
return new RangeNode('days_past_due');
}
public static function id()
{
return new TextNode('id');
}
public static function inTrialPeriod()
{
return new MultipleValueNode('in_trial_period', [true, false]);
}
public static function merchantAccountId()
{
return new MultipleValueNode('merchant_account_id');
}
public static function nextBillingDate()
{
return new RangeNode('next_billing_date');
}
public static function planId()
{
return new MultipleValueOrTextNode('plan_id');
}
public static function price()
{
return new RangeNode('price');
}
public static function status()
{
return new MultipleValueNode('status', [
Subscription::ACTIVE,
Subscription::CANCELED,
Subscription::EXPIRED,
Subscription::PAST_DUE,
Subscription::PENDING,
]);
}
public static function transactionId()
{
return new TextNode('transaction_id');
}
public static function ids()
{
return new MultipleValueNode('ids');
}
}
class_alias('Braintree\SubscriptionSearch', 'Braintree_SubscriptionSearch');