mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/9687] Finish ban check and tidy methods
PHPBB3-9687
This commit is contained in:
committed by
Marc Alexander
parent
95de576ccd
commit
c8b8675dff
20
phpBB/phpbb/ban/exception/no_valid_emails_exception.php
Normal file
20
phpBB/phpbb/ban/exception/no_valid_emails_exception.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\ban\exception;
|
||||
|
||||
use phpbb\exception\runtime_exception;
|
||||
|
||||
class no_valid_emails_exception extends runtime_exception
|
||||
{
|
||||
}
|
20
phpBB/phpbb/ban/exception/no_valid_users_exception.php
Normal file
20
phpBB/phpbb/ban/exception/no_valid_users_exception.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\ban\exception;
|
||||
|
||||
use phpbb\exception\runtime_exception;
|
||||
|
||||
class no_valid_users_exception extends runtime_exception
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user