-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from ARCANEDEV/dev
Updating the package
- Loading branch information
Showing
15 changed files
with
131 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<?php namespace Arcanedev\LaravelMessenger; | ||
|
||
use Arcanedev\LaravelMessenger\Contracts as MessengerContracts; | ||
use Arcanedev\Support\PackageServiceProvider as ServiceProvider; | ||
use Arcanedev\Support\PackageServiceProvider; | ||
|
||
/** | ||
* Class LaravelMessengerServiceProvider | ||
* | ||
* @package Arcanedev\LaravelMessenger | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class LaravelMessengerServiceProvider extends ServiceProvider | ||
class LaravelMessengerServiceProvider extends PackageServiceProvider | ||
{ | ||
/* ------------------------------------------------------------------------------------------------ | ||
/* ----------------------------------------------------------------- | ||
| Properties | ||
| ------------------------------------------------------------------------------------------------ | ||
| ----------------------------------------------------------------- | ||
*/ | ||
/** | ||
* Package name. | ||
|
@@ -22,9 +22,9 @@ class LaravelMessengerServiceProvider extends ServiceProvider | |
*/ | ||
protected $package = 'laravel-messenger'; | ||
|
||
/* ------------------------------------------------------------------------------------------------ | ||
/* ----------------------------------------------------------------- | ||
| Getters & Setters | ||
| ------------------------------------------------------------------------------------------------ | ||
| ----------------------------------------------------------------- | ||
*/ | ||
/** | ||
* Get the base path of the package. | ||
|
@@ -36,15 +36,17 @@ public function getBasePath() | |
return dirname(__DIR__); | ||
} | ||
|
||
/* ------------------------------------------------------------------------------------------------ | ||
/* ----------------------------------------------------------------- | ||
| Main Functions | ||
| ------------------------------------------------------------------------------------------------ | ||
| ----------------------------------------------------------------- | ||
*/ | ||
/** | ||
* Register the service provider. | ||
*/ | ||
public function register() | ||
{ | ||
parent::register(); | ||
|
||
$this->registerConfig(); | ||
$this->bindModels(); | ||
} | ||
|
@@ -74,9 +76,9 @@ public function provides() | |
]; | ||
} | ||
|
||
/* ------------------------------------------------------------------------------------------------ | ||
| Other Functions | ||
| ------------------------------------------------------------------------------------------------ | ||
/* ----------------------------------------------------------------- | ||
| Other Methods | ||
| ----------------------------------------------------------------- | ||
*/ | ||
/** | ||
* Bind the models. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.