You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web/Sources/src/data/stub/StubData.php

20 lines
340 B

<!-- IDataManager is a Model interfaces -->
<!-- It's like a DI Container -->
<?php
namespace Stub;
use Manager\DataManager;
class StubData extends DataManager{
public $userMgr;
public $activityMgr;
public function __construct(){
$userMgr = new UserManager();
$activityMgr = new ActivityManager;
}
}
?>