ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
FilesystemsImpl.php
Go to the documentation of this file.
1<?php
2
3namespace ILIAS\Filesystem;
4
15final class FilesystemsImpl implements Filesystems
16{
17
21 private $libs;
25 private $storage;
29 private $web;
33 private $temp;
37 private $customizing;
38
39
50 {
51 $this->storage = $storage;
52 $this->web = $web;
53 $this->temp = $temp;
55 $this->libs = $libs;
56 }
57
58
62 public function web()
63 {
64 return $this->web;
65 }
66
67
71 public function storage()
72 {
73 return $this->storage;
74 }
75
76
80 public function temp()
81 {
82 return $this->temp;
83 }
84
85
89 public function customizing()
90 {
91 return $this->customizing;
92 }
93
94
98 public function libs()
99 {
100 return $this->libs;
101 }
102}
An exception for terminatinating execution or to throw for unit testing.
__construct(Filesystem $storage, Filesystem $web, Filesystem $temp, Filesystem $customizing, FileSystem $libs)
FilesystemsImpl constructor.
Class FlySystemFileAccessTest.