Completed
Push — master ( fab0a4...8e249d )
by Jeroen
41:43 queued 16:43
created
engine/lib/plugins.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,9 +4,6 @@
 block discarded – undo
4 4
  * Contains functions for managing plugins
5 5
  */
6 6
 
7
-use Elgg\Filesystem\Directory;
8
-use Elgg\Project\Paths;
9
-
10 7
 /**
11 8
  * Discovers plugins in the plugins_path setting and creates \ElggPlugin
12 9
  * entities for them if they don't exist.  If there are plugins with entities
Please login to merge, or discard this patch.
engine/lib/relationships.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,6 @@
 block discarded – undo
6 6
  * @subpackage DataModel.Relationship
7 7
  */
8 8
 
9
-use Elgg\Project\Paths;
10
-
11 9
 /**
12 10
  * Get a relationship by its ID
13 11
  *
Please login to merge, or discard this patch.
engine/lib/river.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,6 @@
 block discarded – undo
7 7
  * @subpackage River
8 8
  */
9 9
 
10
-use Elgg\Project\Paths;
11
-
12 10
 /**
13 11
  * Adds an item to the river.
14 12
  *
Please login to merge, or discard this patch.
engine/lib/users.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,8 +7,6 @@
 block discarded – undo
7 7
  * @subpackage DataModel.User
8 8
  */
9 9
 
10
-use Elgg\Project\Paths;
11
-
12 10
 /**
13 11
  * Disables all of a user's entities
14 12
  *
Please login to merge, or discard this patch.
engine/classes/Elgg/Di/ServiceProvider.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,6 @@
 block discarded – undo
5 5
 use Elgg\Cache\Pool;
6 6
 use Elgg\Printer\CliPrinter;
7 7
 use Elgg\Printer\HtmlPrinter;
8
-use Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage;
9
-use Symfony\Component\HttpFoundation\Session\Session as SymfonySession;
10 8
 use Zend\Mail\Transport\TransportInterface as Mailer;
11 9
 
12 10
 /**
Please login to merge, or discard this patch.
engine/classes/Elgg/Application.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -3,21 +3,16 @@
 block discarded – undo
3 3
 namespace Elgg;
4 4
 
5 5
 use Doctrine\DBAL\Connection;
6
-use Elgg\Cache\Pool\InMemory as InMemoryCachePool;
7 6
 use Elgg\Database\DbConfig;
8 7
 use Elgg\Database\SiteSecret;
9
-use Elgg\Database\TestingPlugins;
10 8
 use Elgg\Di\ServiceProvider;
11 9
 use Elgg\Filesystem\Directory;
12 10
 use Elgg\Http\Request;
13 11
 use Elgg\Filesystem\Directory\Local;
14 12
 use ConfigurationException;
15
-use Elgg\Mocks\Di\MockServiceProvider;
16 13
 use Elgg\Project\Paths;
17 14
 use Exception;
18 15
 use InstallationException;
19
-use RuntimeException;
20
-use Zend\Mail\Transport\InMemory as InMemoryMailTransport;
21 16
 
22 17
 /**
23 18
  * Load, boot, and implement a front controller for an Elgg application
Please login to merge, or discard this patch.