Skip to content
This repository was archived by the owner on Feb 21, 2019. It is now read-only.

Commit f4a2920

Browse files
committed
Project name was changed. let's have more more fun
1 parent 2b83d79 commit f4a2920

27 files changed

+44
-44
lines changed

app/Console/Commands/Inspire.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BMS\Console\Commands;
3+
namespace FMS\Console\Commands;
44

55
use Illuminate\Console\Command;
66
use Illuminate\Foundation\Inspiring;

app/Console/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BMS\Console;
3+
namespace FMS\Console;
44

55
use Illuminate\Console\Scheduling\Schedule;
66
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

app/Events/Event.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BMS\Events;
3+
namespace FMS\Events;
44

55
abstract class Event
66
{

app/Exceptions/Handler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BMS\Exceptions;
3+
namespace FMS\Exceptions;
44

55
use Exception;
66
use Illuminate\Validation\ValidationException;

app/Http/Controllers/Auth/AuthController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace BMS\Http\Controllers\Auth;
3+
namespace FMS\Http\Controllers\Auth;
44

5-
use BMS\User;
5+
use FMS\User;
66
use Validator;
7-
use BMS\Http\Controllers\Controller;
7+
use FMS\Http\Controllers\Controller;
88
use Illuminate\Foundation\Auth\ThrottlesLogins;
99
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
1010

app/Http/Controllers/Auth/PasswordController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace BMS\Http\Controllers\Auth;
3+
namespace FMS\Http\Controllers\Auth;
44

5-
use BMS\Http\Controllers\Controller;
5+
use FMS\Http\Controllers\Controller;
66
use Illuminate\Foundation\Auth\ResetsPasswords;
77

88
class PasswordController extends Controller

app/Http/Controllers/Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BMS\Http\Controllers;
3+
namespace FMS\Http\Controllers;
44

55
use Illuminate\Foundation\Bus\DispatchesJobs;
66
use Illuminate\Routing\Controller as BaseController;

app/Http/Controllers/VhipController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22

3-
namespace BMS\Http\Controllers;
3+
namespace FMS\Http\Controllers;
44

55
use Illuminate\Http\Request;
66

7-
use BMS\Http\Requests;
7+
use FMS\Http\Requests;
88

99
class VhipController extends Controller
1010
{

app/Http/Kernel.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BMS\Http;
3+
namespace FMS\Http;
44

55
use Illuminate\Foundation\Http\Kernel as HttpKernel;
66

@@ -24,11 +24,11 @@ class Kernel extends HttpKernel
2424
*/
2525
protected $middlewareGroups = [
2626
'web' => [
27-
\BMS\Http\Middleware\EncryptCookies::class,
27+
\FMS\Http\Middleware\EncryptCookies::class,
2828
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
2929
\Illuminate\Session\Middleware\StartSession::class,
3030
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
31-
\BMS\Http\Middleware\VerifyCsrfToken::class,
31+
\FMS\Http\Middleware\VerifyCsrfToken::class,
3232
],
3333

3434
'api' => [
@@ -44,10 +44,10 @@ class Kernel extends HttpKernel
4444
* @var array
4545
*/
4646
protected $routeMiddleware = [
47-
'auth' => \BMS\Http\Middleware\Authenticate::class,
47+
'auth' => \FMS\Http\Middleware\Authenticate::class,
4848
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
4949
'can' => \Illuminate\Foundation\Http\Middleware\Authorize::class,
50-
'guest' => \BMS\Http\Middleware\RedirectIfAuthenticated::class,
50+
'guest' => \FMS\Http\Middleware\RedirectIfAuthenticated::class,
5151
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
5252
];
5353
}

app/Http/Middleware/Authenticate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BMS\Http\Middleware;
3+
namespace FMS\Http\Middleware;
44

55
use Closure;
66
use Illuminate\Support\Facades\Auth;

0 commit comments

Comments
 (0)