@@ -4,9 +4,6 @@ |
||
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 |
@@ -6,8 +6,6 @@ |
||
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 | * |
@@ -7,8 +7,6 @@ |
||
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 | * |
@@ -7,8 +7,6 @@ |
||
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 | * |
@@ -5,8 +5,6 @@ |
||
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 | /** |
@@ -3,21 +3,16 @@ |
||
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 |