3 changed files with 29 additions and 1 deletions
@ -0,0 +1,19 @@
|
||||
<?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( |
||||
static::$app->make('router') |
||||
); |
||||
} |
||||
} |
Loading…
Reference in new issue