Beispiel #1
0
 /**
  * @dataProvider dataGetAttachmentColor
  * @param  int $logLevel
  * @param  string $expectedColour RGB hex color or name of Slack color
  * @covers ::getAttachmentColor
  */
 public function testGetAttachmentColor($logLevel, $expectedColour)
 {
     $slackRecord = new SlackRecord('#test');
     $this->assertSame($expectedColour, $slackRecord->getAttachmentColor($logLevel));
 }
Beispiel #2
0
 /**
  * Returned a Slack message attachment color associated with
  * provided level.
  *
  * @param  int    $level
  * @return string
  * @deprecated Use underlying SlackRecord instead
  */
 protected function getAttachmentColor($level)
 {
     trigger_error('SlackHandler::getAttachmentColor() is deprecated. Use underlying SlackRecord instead.', E_USER_DEPRECATED);
     return $this->slackRecord->getAttachmentColor($level);
 }