12 lines
149 B
PHP
12 lines
149 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
interface EnhancedApps
|
|
{
|
|
public function test();
|
|
|
|
public function livestats();
|
|
|
|
public function url($endpoint);
|
|
}
|