mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/9687] Resolve phing sniff issues
PHPBB3-9687
This commit is contained in:
parent
927f33fad3
commit
9b8b34e8f3
4 changed files with 2 additions and 4 deletions
|
@ -14,7 +14,6 @@
|
|||
namespace phpbb\ban\type;
|
||||
|
||||
use phpbb\ban\exception\no_valid_emails_exception;
|
||||
use phpbb\exception\runtime_exception;
|
||||
|
||||
class email extends base
|
||||
{
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
namespace phpbb\ban\type;
|
||||
|
||||
use phpbb\ban\exception\no_valid_users_exception;
|
||||
use phpbb\exception\runtime_exception;
|
||||
|
||||
class user extends base
|
||||
{
|
||||
|
|
|
@ -17,7 +17,7 @@ use phpbb\db\migration\migration;
|
|||
|
||||
class ban_table_p1 extends migration
|
||||
{
|
||||
static public function depends_on(): array
|
||||
public static function depends_on(): array
|
||||
{
|
||||
return ['\phpbb\db\migration\data\v320\default_data_type_ids'];
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ namespace phpbb\db\migration\data\v400;
|
|||
|
||||
class ban_table_p2 extends \phpbb\db\migration\migration
|
||||
{
|
||||
static public function depends_on(): array
|
||||
public static function depends_on(): array
|
||||
{
|
||||
return ['\phpbb\db\migration\data\v400\ban_table_p1'];
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue