aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/ext/vendor/moo/ext.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extension/ext/vendor/moo/ext.php')
-rw-r--r--tests/extension/ext/vendor/moo/ext.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/extension/ext/vendor/moo/ext.php b/tests/extension/ext/vendor/moo/ext.php
new file mode 100644
index 0000000000..e0ac1a22cc
--- /dev/null
+++ b/tests/extension/ext/vendor/moo/ext.php
@@ -0,0 +1,13 @@
+<?php
+
+class phpbb_ext_vendor_moo_ext extends phpbb_extension_base
+{
+ static public $purged;
+
+ public function purge_step($old_state)
+ {
+ self::$purged = true;
+
+ return false;
+ }
+}