ILIAS  release_7 Revision v7.30-3-g800a261c036
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
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}
An exception for terminatinating execution or to throw for unit testing.
__construct(RunDBRepository $repo=null)
Constructor.