X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=framework%2Fmain%2Fclasses%2Fregistration%2Fclass_BaseRegistration.php;h=6dad6fdff0634c47af61d84fb5bdf0c4f33e23cc;hp=db2ec310c00e49e8771f841de06dc47ebfc41f4c;hb=b002c5909aa0f781505dde5414964b0f014cde01;hpb=78a010fef84895720e796842208f01dfb619c332 diff --git a/framework/main/classes/registration/class_BaseRegistration.php b/framework/main/classes/registration/class_BaseRegistration.php index db2ec310..6dad6fdf 100644 --- a/framework/main/classes/registration/class_BaseRegistration.php +++ b/framework/main/classes/registration/class_BaseRegistration.php @@ -1,11 +1,12 @@ . */ -class BaseRegistration extends BaseFrameworkSystem { +abstract class BaseRegistration extends BaseFrameworkSystem { /** * Pre-registration filter chain */ @@ -91,7 +92,7 @@ class BaseRegistration extends BaseFrameworkSystem { */ protected function executePreFilters () { // Execute all pre filters - $this->preRegistrationFilter->processFilters($this->getRequestInstance(), $this->getResponseInstance()); + $this->preRegistrationFilter->processFilters(FrameworkBootstrap::getRequestInstance(), FrameworkBootstrap::getResponseInstance()); } /** @@ -101,7 +102,7 @@ class BaseRegistration extends BaseFrameworkSystem { */ protected function executePostFilters () { // Execute all post filters - $this->postRegistrationFilter->processFilters($this->getRequestInstance(), $this->getResponseInstance()); + $this->postRegistrationFilter->processFilters(FrameworkBootstrap::getRequestInstance(), FrameworkBootstrap::getResponseInstance()); } }