1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-28 04:20:32 +02:00
Files
php-phpbb/tests/extension/ext/vendor/moo/ext.php
2013-09-17 16:15:44 +02:00

16 lines
186 B
PHP

<?php
namespace vendor\moo;
class ext extends \phpbb\extension\base
{
static public $purged;
public function purge_step($old_state)
{
self::$purged = true;
return false;
}
}