vendor/sentry/sentry-symfony/src/SentryBundle.php line 8

Open in your IDE?
  1. <?php
  2. namespace Sentry\SentryBundle;
  3. use Jean85\PrettyVersions;
  4. use Symfony\Component\HttpKernel\Bundle\Bundle;
  5. class SentryBundle extends Bundle
  6. {
  7.     public static function getVersion(): string
  8.     {
  9.         return PrettyVersions::getVersion('sentry/sentry-symfony')
  10.             ->getPrettyVersion();
  11.     }
  12. }