<?php
/**
*
* Date: 21.10.2021
* Time: 10:35
*
*/
namespace Elements\Bundle\LoggingClientApi;
use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
use Composer\InstalledVersions;
class LoggingClientApiBundle extends AbstractPimcoreBundle
{
public function getVersion(): string
{
$version = InstalledVersions::getVersion('elements/logging-client-api-bundle');
return $version;
}
public function getDescription(): string
{
return 'Logging Client Api Bundle';
}
}