Make function visiblity protected

This commit is contained in:
o.smith 2025-01-06 17:09:00 +00:00 committed by Jack Anderson
parent 17c86b5a8b
commit c8117e92b7

View file

@ -735,7 +735,7 @@ class AppMetadataProvider implements AppMetadataProviderInterface
* @return array
* @throws \Psr\Cache\InvalidArgumentException
*/
public function getNavigation(string $userId): array
protected function getNavigation(string $userId): array
{
$navigation = $this->cache->get('app-metadata-navigation-' . $userId, function () {
return $this->navigationService->getNavbar()->toArray();