3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface CommerceLicenseBillingUsageGroupNamesInterface { public static function usageGroupNames(); } class TestLicense implements CommerceLicenseBillingUsageGroupNamesInterface { public static function usageGroupNames() { return array( 'test_group' => array( 'title' => 'Test Group', ), ); } } $l = new TestLicense(); print_r($l->usageGroupNames());

preferences:
28.88 ms | 402 KiB | 5 Q