ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilTermsOfServiceNullDocument.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4require_once 'Services/TermsOfService/interfaces/interface.ilTermsOfServiceSignableDocument.php';
5
11{
15 public function hasContent()
16 {
17 return false;
18 }
19
23 public function getContent()
24 {
25 return '';
26 }
27
31 public function getSource()
32 {
33 return '';
34 }
35
39 public function getSourceType()
40 {
41 return '';
42 }
43
47 public function getIso2LanguageCode()
48 {
49 return '';
50 }
51
55 public function determine()
56 {
57 }
58
62 public function exists()
63 {
64 return false;
65 }
66}
An exception for terminatinating execution or to throw for unit testing.