Bugfix Errors with PHPCI GitHub hook #296

> fixed access to undefined class member _buildStore to buildStore
This commit is contained in:
zigster 2014-03-30 11:59:56 +02:00
parent e7e920ffd7
commit 9f5b05aa2a

View file

@ -97,7 +97,7 @@ class WebhookController extends \PHPCI\Controller
}
try {
$this->_buildStore->save($build);
$this->buildStore->save($build); /** bugfix: Errors with PHPCI GitHub hook #296 */
} catch (\Exception $ex) {
header('HTTP/1.1 500 Internal Server Error');
header('Ex: ' . $ex->getMessage());