1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

[ticket/12683] Add basic tests

PHPBB3-12683
This commit is contained in:
Ruben Calvo
2021-11-22 21:10:16 +01:00
parent d55f1e04eb
commit ac227a9ea6
9 changed files with 361 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
services:
post.helper:
class: phpbb\post\post_helper
class: phpbb\posting\post_helper
arguments:
- '@dbal.conn'

View File

@@ -17,7 +17,7 @@ use phpbb\config\config;
use phpbb\console\command\command;
use phpbb\language\language;
use phpbb\log\log;
use phpbb\post\post_helper;
use phpbb\posting\post_helper;
use phpbb\search\exception\no_search_backend_found_exception;
use phpbb\search\search_backend_factory;
use phpbb\search\state_helper;

View File

@@ -17,7 +17,7 @@ use phpbb\config\config;
use phpbb\console\command\command;
use phpbb\language\language;
use phpbb\log\log;
use phpbb\post\post_helper;
use phpbb\posting\post_helper;
use phpbb\search\exception\no_search_backend_found_exception;
use phpbb\search\search_backend_factory;
use phpbb\search\state_helper;

View File

@@ -11,7 +11,7 @@
*
*/
namespace phpbb\post;
namespace phpbb\posting;
use phpbb\db\driver\driver_interface;