X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fclass_BaseFrameworkSystem.php;h=ae19aeb4938c66af993788a76cfbd9016413b6a0;hp=96d5cabb5a5d981adf208bb232e37f8542a0fbc0;hb=88edbab806256235ce080fc18d6602061777a6ba;hpb=def2a95907c40b71343061188f49ccbe1b8c7f20 diff --git a/inc/classes/main/class_BaseFrameworkSystem.php b/inc/classes/main/class_BaseFrameworkSystem.php index 96d5cabb..ae19aeb4 100644 --- a/inc/classes/main/class_BaseFrameworkSystem.php +++ b/inc/classes/main/class_BaseFrameworkSystem.php @@ -198,6 +198,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { */ private $minableInstance = NULL; + /** + * A Directory instance + */ + private $directoryInstance = NULL; + /** * Thousands separator */ @@ -1319,6 +1324,25 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface { return $this->minableInstance; } + /** + * Setter for Directory instance + * + * @param $directoryInstance A FrameworkDirectoryPointer instance + * @return void + */ + protected final function setDirectoryInstance (Directory $directoryInstance) { + $this->directoryInstance = $directoryInstance; + } + + /** + * Getter for directory instance + * + * @return $directoryInstance A Directory instance + */ + protected final function getDirectoryInstance () { + return $this->directoryInstance; + } + /** * Checks whether an object equals this object. You should overwrite this * method to implement own equality checks