Neos\Flow\Package\PackageManager::emitPackageStatesUpdated PHP Method

emitPackageStatesUpdated() protected method

The advice is not proxyable, so the signal is dispatched manually here.
protected emitPackageStatesUpdated ( ) : void
return void
    protected function emitPackageStatesUpdated()
    {
        if ($this->bootstrap === null) {
            return;
        }
        if ($this->dispatcher === null) {
            $this->dispatcher = $this->bootstrap->getEarlyInstance(Dispatcher::class);
        }
        $this->dispatcher->dispatch(PackageManager::class, 'packageStatesUpdated');
    }