mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 14:28:56 +00:00
[ticket/16671] Fix coding style
PHPBB3-166671
This commit is contained in:
parent
3d8f7ee33b
commit
b3e7c01ab6
8 changed files with 17 additions and 17 deletions
|
@ -13,10 +13,10 @@
|
||||||
|
|
||||||
namespace phpbb\attachment;
|
namespace phpbb\attachment;
|
||||||
|
|
||||||
use \phpbb\config\config;
|
use phpbb\config\config;
|
||||||
use \phpbb\db\driver\driver_interface;
|
use phpbb\db\driver\driver_interface;
|
||||||
use \phpbb\event\dispatcher;
|
use phpbb\event\dispatcher;
|
||||||
use \phpbb\filesystem\filesystem;
|
use phpbb\filesystem\filesystem;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attachment delete class
|
* Attachment delete class
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
namespace phpbb\attachment;
|
namespace phpbb\attachment;
|
||||||
|
|
||||||
use \phpbb\db\driver\driver_interface;
|
use phpbb\db\driver\driver_interface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attachment resync class
|
* Attachment resync class
|
||||||
|
|
|
@ -14,13 +14,13 @@
|
||||||
namespace phpbb\attachment;
|
namespace phpbb\attachment;
|
||||||
|
|
||||||
use phpbb\auth\auth;
|
use phpbb\auth\auth;
|
||||||
use \phpbb\cache\service;
|
use phpbb\cache\service;
|
||||||
use \phpbb\config\config;
|
use phpbb\config\config;
|
||||||
use \phpbb\event\dispatcher;
|
use phpbb\event\dispatcher;
|
||||||
use \phpbb\language\language;
|
use phpbb\language\language;
|
||||||
use \phpbb\mimetype\guesser;
|
use phpbb\mimetype\guesser;
|
||||||
use \phpbb\plupload\plupload;
|
use phpbb\plupload\plupload;
|
||||||
use \phpbb\user;
|
use phpbb\user;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attachment upload class
|
* Attachment upload class
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
namespace phpbb\controller;
|
namespace phpbb\controller;
|
||||||
|
|
||||||
use phpbb\auth\auth;
|
use phpbb\auth\auth;
|
||||||
use \phpbb\cache\driver\driver_interface as cache_interface;
|
use phpbb\cache\driver\driver_interface as cache_interface;
|
||||||
use phpbb\config\config;
|
use phpbb\config\config;
|
||||||
use phpbb\cron\manager;
|
use phpbb\cron\manager;
|
||||||
use phpbb\db\driver\driver_interface;
|
use phpbb\db\driver\driver_interface;
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
namespace phpbb\db\driver;
|
namespace phpbb\db\driver;
|
||||||
|
|
||||||
use \Symfony\Component\DependencyInjection\ContainerInterface;
|
use Symfony\Component\DependencyInjection\ContainerInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Database Abstraction Layer
|
* Database Abstraction Layer
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
namespace phpbb\language;
|
namespace phpbb\language;
|
||||||
|
|
||||||
use \phpbb\language\exception\language_file_not_found;
|
use phpbb\language\exception\language_file_not_found;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Language file loader
|
* Language file loader
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
namespace phpbb\report\exception;
|
namespace phpbb\report\exception;
|
||||||
|
|
||||||
use \phpbb\exception\runtime_exception;
|
use phpbb\exception\runtime_exception;
|
||||||
|
|
||||||
class factory_invalid_argument_exception extends runtime_exception
|
class factory_invalid_argument_exception extends runtime_exception
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
namespace phpbb\report\exception;
|
namespace phpbb\report\exception;
|
||||||
|
|
||||||
use \phpbb\exception\runtime_exception;
|
use phpbb\exception\runtime_exception;
|
||||||
|
|
||||||
class invalid_report_exception extends runtime_exception
|
class invalid_report_exception extends runtime_exception
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue