[ticket/9687] Resolve phing sniff issues

PHPBB3-9687
This commit is contained in:
Marc Alexander 2023-07-30 10:08:58 +02:00
parent 927f33fad3
commit 9b8b34e8f3
No known key found for this signature in database
GPG key ID: 50E0D2423696F995
4 changed files with 2 additions and 4 deletions

View file

@ -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
{

View file

@ -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
{

View file

@ -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'];
}

View file

@ -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'];
}