You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
572 B
26 lines
572 B
<?php |
|
|
|
namespace Bluesquare\Connect\Facades; |
|
|
|
use Illuminate\Support\Facades\Facade; |
|
|
|
class Connect extends Facade |
|
{ |
|
/** |
|
* Register the typical Connect routes for an application. |
|
* @return void |
|
*/ |
|
public static function routes() |
|
{ |
|
static::$app->make(\Bluesquare\Connect\Connect::class)->routes(); |
|
} |
|
|
|
/** |
|
* Register the typical Connect API routes for an application. |
|
* @return void |
|
*/ |
|
public static function apiRoutes() |
|
{ |
|
static::$app->make(\Bluesquare\Connect\Connect::class)->apiRoutes(); |
|
} |
|
}
|
|
|