aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/ext/vendor/moo/ext.php
blob: 41ef5704529209da0b3499a4c3a8cbb215cfa9de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace vendor\moo;

class ext extends \phpbb\extension\base
{
	static public $purged;

	public function purge_step($old_state)
	{
		self::$purged = true;

		return false;
	}
}