This commit is contained in:
2025-03-21 20:24:43 +01:00
parent 224398df90
commit f34c9162d4
12427 changed files with 5329941 additions and 373384 deletions

View File

@@ -84,6 +84,17 @@ class Category extends MockProxy
protected static $mock;
public $id = null;
public $nleft = null;
public $nright = null;
public function __construct($id)
{
if ($id === 12) {
$this->id = 12;
$this->nleft = 101;
$this->nright = 102;
}
}
}
class Group extends MockProxy
@@ -127,3 +138,9 @@ class Module extends MockProxy
// Redeclare to use this instead MockProxy::mock
protected static $mock;
}
class FrontController extends MockProxy
{
// Redeclare to use this instead MockProxy::mock
protected static $mock;
}