ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilFileProperty.php
Go to the documentation of this file.
1<?php
2
4
10{
15
16
20 private $file_name;
21
22 public function __construct()
23 {
24
25 }
26
30 public function getAbsolutePath() : string
31 {
33 }
34
38 public function setAbsolutePath(string $absolute_path) : void
39 {
40 $this->absolute_path = $absolute_path;
41 }
42
46 public function getFileName() : string
47 {
48 return $this->file_name;
49 }
50
54 public function setFileName(string $file_name) : void
55 {
56 $this->file_name = $file_name;
57 }
58}
An exception for terminatinating execution or to throw for unit testing.