vendor/elements/logging-client-api-bundle/src/LoggingClientApiBundle.php line 13

Open in your IDE?
  1. <?php
  2. /**
  3.  *
  4.  * Date: 21.10.2021
  5.  * Time: 10:35
  6.  *
  7.  */
  8. namespace Elements\Bundle\LoggingClientApi;
  9. use Pimcore\Extension\Bundle\AbstractPimcoreBundle;
  10. use Composer\InstalledVersions;
  11. class LoggingClientApiBundle extends AbstractPimcoreBundle
  12. {
  13.     public function getVersion()
  14.     {
  15.         $version InstalledVersions::getVersion('elements/logging-client-api-bundle');
  16.         return $version;
  17.     }
  18.     public function getDescription()
  19.     {
  20.         return 'Logging Client Api Bundle';
  21.     }
  22. }