Remove whitespace from empty lines, reformatted inline comments

This commit is contained in:
Mike Bronner 2015-10-23 13:55:04 -07:00 committed by wodka
parent 66ffea12f0
commit fe9289eda5

View file

@ -85,30 +85,25 @@ class WebhookController extends \b8\Controller
public function bitbucket($projectId)
{
$project = $this->fetchProject($projectId, 'bitbucket');
/*
* support both old services and new webhooks
*/
// Support both old services and new webhooks
if ($payload = $this->getParam('payload')) {
return $this->bitbucketService(json_decode($payload, true), $project);
}
$payload = json_decode(file_get_contents("php://input"), true);
if (empty($payload['push']['changes'])) {
/*
* invalid event from bitbucket
*/
// Invalid event from bitbucket
return [
'status' => 'failed',
'commits' => []
];
}
return $this->bitbucketWebhook($payload, $project);
}
/**
* Bitbucket webhooks.
*/
@ -137,7 +132,7 @@ class WebhookController extends \b8\Controller
return array('status' => $status, 'commits' => $results);
}
/**
* Bitbucket POST service.
*/