1
0
mirror of https://github.com/flarum/core.git synced 2025-10-19 10:46:06 +02:00

reordering and removing unused imports

This commit is contained in:
Daniel Klabbers
2016-02-10 11:00:37 +01:00
parent 89598646c1
commit 31be2f8f86
57 changed files with 96 additions and 114 deletions

View File

@@ -10,7 +10,6 @@
namespace Flarum\Foundation;
use Exception;
use Flarum\Core;
use Illuminate\Config\Repository as ConfigRepository;
use Monolog\Formatter\LineFormatter;

View File

@@ -10,12 +10,12 @@
namespace Flarum\Foundation;
use Illuminate\Support\Arr;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
use Illuminate\Container\Container;
use Illuminate\Contracts\Foundation\Application as ApplicationContract;
use Illuminate\Events\EventServiceProvider;
use Illuminate\Support\Arr;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
class Application extends Container implements ApplicationContract
{