ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.RunManager.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 namespace ILIAS\Survey\Execution;
6 
13 {
17  protected $repo;
18 
22  public function __construct(RunDBRepository $repo = null)
23  {
24  $this->repo = (is_null($repo))
25  ? new RunDBRepository()
26  : $repo;
27  }
28 }
__construct(RunDBRepository $repo=null)
Constructor.