aboutsummaryrefslogtreecommitdiffstats
path: root/tests/controller/phpbb
diff options
context:
space:
mode:
Diffstat (limited to 'tests/controller/phpbb')
-rw-r--r--tests/controller/phpbb/controller/foo.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/controller/phpbb/controller/foo.php b/tests/controller/phpbb/controller/foo.php
new file mode 100644
index 0000000000..04576e16c4
--- /dev/null
+++ b/tests/controller/phpbb/controller/foo.php
@@ -0,0 +1,16 @@
+<?php
+
+use Symfony\Component\HttpFoundation\Response;
+
+class phpbb_controller_foo
+{
+ /**
+ * Bar method
+ *
+ * @return null
+ */
+ public function bar()
+ {
+ return new Response('bar()', 200);
+ }
+}