PHP code example of sfertrack / rollbar-symfony-bundle

1. Go to this page and download the library: Download sfertrack/rollbar-symfony-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

sfertrack / rollbar-symfony-bundle example snippets


use SFErTrack\RollbarSymfonyBundle\Service\Exception\UserFriendlyExceptionMessageInterface;

final FailedDependencyException extends Exception implements UserFriendlyExceptionMessageInterface {
    public function getUserFriendlyMessage()
    {
        return 'Unfortunately zoom service is down, please try again later';
    }
}