Skip to content

Commit

Permalink
Merge pull request #99 from alleyinteractive/mono-repo
Browse files Browse the repository at this point in the history
Support namespace changes from framework
  • Loading branch information
srtfisher authored Apr 8, 2022
2 parents a6206a0 + 074a4ec commit aa12757
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/console/class-kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace App\Console;

use Mantle\Console\Kernel as Console_Kernel;
use Mantle\Framework\Console\Kernel as Console_Kernel;

/**
* Application Console Kernel
Expand Down
2 changes: 1 addition & 1 deletion app/http/class-kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace App\Http;

use Mantle\Http\Kernel as Http_Kernel;
use Mantle\Framework\Http\Kernel as Http_Kernel;

/**
* Application HTTP Kernel
Expand Down
2 changes: 1 addition & 1 deletion database/seeds/class-database-seeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace App\Database\Seeds;

use Mantle\Database\Seeder;
use function Mantle\Framework\Helpers\factory;
use function Mantle\Support\Helpers\factory;

/**
* Application Seeder
Expand Down
1 change: 1 addition & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* @package Mantle
*/

use Mantle\Facade\Http;
use Mantle\Facade\Route;

/*
Expand Down

0 comments on commit aa12757

Please sign in to comment.