Completed
Branch master (0e9f9c)
by Kyle
04:09
created
src/Asset/Component.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 use BootPress\Page\Component as Page;
6 6
 use BootPress\SQLite\Component as SQLite;
7
-use Symfony\Component\HttpFoundation\Response;
8
-use Symfony\Component\HttpFoundation\StreamedResponse;
9
-use Symfony\Component\HttpFoundation\BinaryFileResponse;
10 7
 use League\Glide\Responses\SymfonyResponseFactory;
11 8
 use League\Glide\ServerFactory;
12 9
 use MatthiasMullie\Minify;
10
+use Symfony\Component\HttpFoundation\BinaryFileResponse;
11
+use Symfony\Component\HttpFoundation\Response;
12
+use Symfony\Component\HttpFoundation\StreamedResponse;
13 13
 use phpUri;
14 14
 
15 15
 class Component
Please login to merge, or discard this patch.
src/Blog/Blog.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace BootPress\Blog;
4 4
 
5
+use BootPress\Hierarchy\Component as Hierarchy;
5 6
 use BootPress\Page\Component as Page;
6
-use BootPress\Theme\Component as Theme;
7
+use BootPress\Pagination\Component as Pagination;
7 8
 use BootPress\SQLite\Component as SQLite;
8 9
 use BootPress\Sitemap\Component as Sitemap;
9
-use BootPress\Hierarchy\Component as Hierarchy;
10
-use BootPress\Pagination\Component as Pagination;
10
+use BootPress\Theme\Component as Theme;
11 11
 use Symfony\Component\Finder\Finder;
12 12
 use Symfony\Component\Yaml\Yaml;
13 13
 
Please login to merge, or discard this patch.
src/Blog/Component.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace BootPress\Blog;
4 4
 
5
-use BootPress\Page\Component as Page;
6 5
 use BootPress\Asset\Component as Asset;
7
-use BootPress\Sitemap\Component as Sitemap;
8 6
 use BootPress\Hierarchy\Component as Hierarchy;
7
+use BootPress\Page\Component as Page;
8
+use BootPress\Sitemap\Component as Sitemap;
9 9
 
10 10
 class Component extends Blog
11 11
 {
Please login to merge, or discard this patch.
src/Bootstrap/Bootstrap3.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace BootPress\Bootstrap;
4 4
 
5
-use BootPress\Page\Component as Page;
6 5
 use BootPress\Form\Component as Form;
6
+use BootPress\Page\Component as Page;
7 7
 
8 8
 class Bootstrap3
9 9
 {
Please login to merge, or discard this patch.
src/Page/Component.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace BootPress\Page;
4 4
 
5
-use Symfony\Component\HttpFoundation\Request;
6
-use Symfony\Component\HttpFoundation\Response;
5
+use Spartz\TextFormatter\TextFormatter;
7 6
 use Symfony\Component\HttpFoundation\JsonResponse;
8 7
 use Symfony\Component\HttpFoundation\RedirectResponse;
8
+use Symfony\Component\HttpFoundation\Request;
9
+use Symfony\Component\HttpFoundation\Response;
9 10
 use Symfony\Component\HttpFoundation\Session\Session;
10
-use Spartz\TextFormatter\TextFormatter;
11 11
 use ParsedownExtra; // erusev/parsedown-extra
12 12
 use URLify; // jbroadway/urlify
13 13
 use AltoRouter;
Please login to merge, or discard this patch.
src/Sitemap/Component.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace BootPress\Sitemap;
4 4
 
5
-use BootPress\Page\Component as Page;
6 5
 use BootPress\Asset\Component as Asset;
7
-use BootPress\SQLite\Component as SQLite;
8 6
 use BootPress\Hierarchy\Component as Hierarchy;
7
+use BootPress\Page\Component as Page;
8
+use BootPress\SQLite\Component as SQLite;
9 9
 use Symfony\Component\HttpFoundation\Response;
10 10
 
11 11
 class Component
Please login to merge, or discard this patch.
src/Theme/Component.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace BootPress\Theme;
4 4
 
5
-use BootPress\Page\Component as Page;
6 5
 use BootPress\Bootstrap\Component as Bootstrap;
7
-use Symfony\Component\Yaml\Yaml;
6
+use BootPress\Page\Component as Page;
8 7
 use Smarty;
8
+use Symfony\Component\Yaml\Yaml;
9 9
 
10 10
 class Component
11 11
 {
Please login to merge, or discard this patch.