/**
  * Setup the plugin
  *
  * @param Container $app
  */
 public function __construct(Container $app)
 {
     parent::__construct($app);
     $this->configurationFolder = __DIR__ . '/../config';
 }
 /**
  * Setup the plugin.
  *
  * @param Container $app
  */
 public function __construct(Container $app)
 {
     parent::__construct($app);
     $this->configurationFolder = implode(DIRECTORY_SEPARATOR, array(__DIR__, "..", "config"));
 }
 /**
  * RocketeerFlowdock constructor
  *
  * @param Container $app Application Dependency Injection Container
  */
 public function __construct(Container $app)
 {
     parent::__construct($app);
     $this->configurationFolder = __DIR__ . '/../config';
     $this->externalThreadID = date('YmdHis');
 }