Just upgraded to Ubuntu 22.04 and now my phpadmin won't load. I get this following error
Parse error: syntax error, unexpected 'static' (T_STATIC) in /usr/share/php/Symfony/Component/DependencyInjection/ContainerBuilder.php on line 272
I opened up the file, and here is the specific code in that segment.
public function addResource(ResourceInterface $resource): static
{
if (!$this->trackResources) {
return $this;
}
if ($resource instanceof GlobResource && $this->inVendors($resource->getPrefix())) {
return $this;
}
$this->resources[(string) $resource] = $resource;
return $this;
}
Yesterday before the upgrade, everything was working fine. Does anybody have any suggestions?
phpmyadmin
andPHP
itself versions do you have? – Noelianoell