autoStoring = true; } // Disable autostoring feature. public function disableAutoStoring() : void { $this->autoStoring = false; } // Enable autostoring feature. public function enableAutoStoring() : void { $this->autoStoring = true; } // Store modifications. public function storeMods() : void { return; } public function commitMods() : void { if ($this->autoStoring) { $this->storeMods(); } } }