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.php18
1 files changed, 18 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..98669f428f
--- /dev/null
+++ b/tests/controller/phpbb/controller/foo.php
@@ -0,0 +1,18 @@
+<?php
+
+namespace phpbb\controller;
+
+use Symfony\Component\HttpFoundation\Response;
+
+class foo
+{
+ /**
+ * Bar method
+ *
+ * @return null
+ */
+ public function bar()
+ {
+ return new Response('bar()', 200);
+ }
+}