SuiteCRM-Core/core/legacy/NavbarService.php
Dillon-Brown 587a79613e Add API Platform Framework with Symfony/Flex
This implements the basic structure that will be used for the API and core application.
2021-03-30 19:21:30 +01:00

34 lines
541 B
PHP

<?php
namespace SuiteCRM\Core\Legacy;
/**
* Class NavbarService
* @package SuiteCRM\Core\Legacy
*/
class NavbarService
{
/**
* @return string
*/
public function getName(): string
{
return 'template.navbar';
}
/**
* @return string
*/
public function getDescription(): string
{
return 'This service will deal with retrieval of the navbar structure';
}
/**
* @return mixed
*/
public function createService()
{
return new Navbar();
}
}