Page MenuHomeDevCentral

No OneTemporary

diff --git a/app/Actions/AMQPAction.php b/app/Actions/AMQPAction.php
index 75e5a67..3e8fe8d 100644
--- a/app/Actions/AMQPAction.php
+++ b/app/Actions/AMQPAction.php
@@ -1,37 +1,37 @@
<?php
namespace Nasqueron\Notifications\Actions;
class AMQPAction extends Action {
/**
* The action done on the broker ('publish', 'consume')
*
* @var string
*/
public $method;
/**
* The queue or exchange target on the broker
*
* @var string
*/
public $target;
/**
* The routing key
*
* @var string
*/
public $routingKey;
/**
* Initializes a new instance of a AMQP action to report
*/
- function __construct ($method, $target, $routingKey = '') {
+ public function __construct ($method, $target, $routingKey = '') {
parent::__construct();
$this->method = $method;
$this->target = $target;
$this->routingKey = $routingKey;
}
}
diff --git a/app/Actions/NotifyNewCommitsAction.php b/app/Actions/NotifyNewCommitsAction.php
index de35171..74992eb 100644
--- a/app/Actions/NotifyNewCommitsAction.php
+++ b/app/Actions/NotifyNewCommitsAction.php
@@ -1,21 +1,21 @@
<?php
namespace Nasqueron\Notifications\Actions;
class NotifyNewCommitsAction extends Action {
/**
* The Phabricator repository call sign
*
* @var string
*/
public $callSign;
/**
* Initializes a new instance of a AMQP action to report
*/
- function __construct ($callSign) {
+ public function __construct ($callSign) {
parent::__construct();
$this->callSign = $callSign;
}
}

File Metadata

Mime Type
text/x-diff
Expires
Mon, Sep 15, 06:43 (15 h, 37 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2983831
Default Alt Text
(1 KB)

Event Timeline