Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 58
Deprecated: Constant E_STRICT is deprecated in /home/pastorz/old-espace-client/vendor/symfony/error-handler/ErrorHandler.php on line 76 Symfony Profiler
vendor/symfony/webpack-encore-bundle/src/Asset/EntrypointLookup.php line 36
if (isset($entriesData['entrypoints'][$withoutExtension])) {
throw new EntrypointNotFoundException(sprintf('Could not find the entry "%s". Try "%s" instead (without the extension).', $entryName, $withoutExtension));
}
throw new EntrypointNotFoundException(sprintf('Could not find the entry "%s" in "%s". Found: %s.', $entryName, $this->entrypointJsonPath, implode(', ', array_keys($entriesData['entrypoints']))));
}
}
private function getEntriesData(): array
{
if (null !== $this->entriesData) {
return $this->entriesData;
}
if ($this->cache) {
$cached = $this->cache->getItem($this->cacheKey);
if ($cached->isHit()) {
return $this->entriesData = $cached->get();
}
}
if (!file_exists($this->entrypointJsonPath)) {
if (!$this->strictMode) {
return [];
}
throw new \InvalidArgumentException(sprintf('Could not find the entrypoints file from Webpack: the file "%s" does not exist.', $this->entrypointJsonPath));