Code style and other small fixes
This commit is contained in:
parent
17f7dd7f5d
commit
052538e99c
66 changed files with 158 additions and 124 deletions
|
|
@ -12,6 +12,8 @@ namespace PHPCI\Plugin;
|
|||
use PHPCI\Builder;
|
||||
use PHPCI\Helper\Lang;
|
||||
use PHPCI\Model\Build;
|
||||
use PHPCI\Plugin;
|
||||
use HipChat\HipChat;
|
||||
|
||||
/**
|
||||
* Hipchat Plugin
|
||||
|
|
@ -19,7 +21,7 @@ use PHPCI\Model\Build;
|
|||
* @package PHPCI
|
||||
* @subpackage Plugins
|
||||
*/
|
||||
class HipchatNotify implements \PHPCI\Plugin
|
||||
class HipchatNotify implements Plugin
|
||||
{
|
||||
protected $authToken;
|
||||
protected $color;
|
||||
|
|
@ -73,7 +75,7 @@ class HipchatNotify implements \PHPCI\Plugin
|
|||
*/
|
||||
public function execute()
|
||||
{
|
||||
$hipChat = new \HipChat\HipChat($this->authToken);
|
||||
$hipChat = new HipChat($this->authToken);
|
||||
$message = $this->phpci->interpolate($this->message);
|
||||
|
||||
$result = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue