We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19abeed commit 2de5bcbCopy full SHA for 2de5bcb
Neos.Flow/Classes/Package/PackageManager.php
@@ -232,19 +232,7 @@ public function getAvailablePackages(): array
232
*/
233
public function getFrozenPackages(): array
234
{
235
- $frozenPackages = [];
236
- if ($this->bootstrap->getContext()->isDevelopment()) {
237
- /** @var PackageInterface $package */
238
- foreach ($this->packages as $packageKey => $package) {
239
- if (isset($this->packageStatesConfiguration['packages'][$package->getComposerName()]['frozen']) &&
240
- $this->packageStatesConfiguration['packages'][$package->getComposerName()]['frozen'] === true
241
- ) {
242
- $frozenPackages[$packageKey] = $package;
243
- }
244
245
246
-
247
- return $frozenPackages;
+ return [];
248
}
249
250
/**
0 commit comments