public function MenuLinkMock::getCacheMaxAge in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Menu/MenuLinkMock.php \Drupal\Tests\Core\Menu\MenuLinkMock::getCacheMaxAge()
The maximum age for which this object may be cached.
Return value
int The maximum time in seconds that this object may be cached.
Overrides MenuLinkBase::getCacheMaxAge
File
- core/
tests/ Drupal/ Tests/ Core/ Menu/ MenuLinkMock.php, line 87
Class
- MenuLinkMock
- Defines a mock implementation of a menu link used in tests only.
Namespace
Drupal\Tests\Core\MenuCode
public function getCacheMaxAge() {
return $this->pluginDefinition['metadata']['cache_max_age'];
}