Page MenuHomeDevCentral

No OneTemporary

diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php
index 006af3a..4f9bb51 100644
--- a/app/Providers/AppServiceProvider.php
+++ b/app/Providers/AppServiceProvider.php
@@ -1,28 +1,26 @@
<?php
namespace Nasqueron\Notifications\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider {
/**
* Bootstrap any application services.
*
* @return void
*/
- public function boot()
- {
+ public function boot() {
//
}
/**
* Register any application services.
*
* @return void
*/
- public function register()
- {
+ public function register() {
//
}
}
diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php
index bd2aca4..41ac555 100644
--- a/app/Providers/RouteServiceProvider.php
+++ b/app/Providers/RouteServiceProvider.php
@@ -1,46 +1,44 @@
<?php
namespace Nasqueron\Notifications\Providers;
use Illuminate\{
Routing\Router,
Foundation\Support\Providers\RouteServiceProvider as ServiceProvider
};
class RouteServiceProvider extends ServiceProvider {
/**
* This namespace is applied to the controller routes in your routes file.
*
* In addition, it is set as the URL generator's root namespace.
*
* @var string
*/
protected $namespace = 'Nasqueron\Notifications\Http\Controllers';
/**
* Define your route model bindings, pattern filters, etc.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
- public function boot(Router $router)
- {
+ public function boot(Router $router) {
//
parent::boot($router);
}
/**
* Define the routes for the application.
*
* @param \Illuminate\Routing\Router $router
* @return void
*/
- public function map(Router $router)
- {
+ public function map(Router $router) {
$router->group(['namespace' => $this->namespace], function ($router) {
require app_path('Http/routes.php');
});
}
}

File Metadata

Mime Type
text/x-diff
Expires
Thu, Sep 18, 02:06 (1 d, 6 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2989770
Default Alt Text
(2 KB)

Event Timeline