Fixed naming in plugins (phpci -> builder)

This commit is contained in:
Dmitry Khomutov 2016-07-22 13:05:34 +06:00
commit 7ec29f1f31
43 changed files with 330 additions and 376 deletions

View file

@ -30,14 +30,14 @@ class Gulp extends Plugin
/**
* {@inheritdoc}
*/
public function __construct(Builder $phpci, Build $build, array $options = [])
public function __construct(Builder $builder, Build $build, array $options = [])
{
parent::__construct($phpci, $build, $options);
parent::__construct($builder, $build, $options);
$path = $this->phpci->buildPath;
$path = $this->builder->buildPath;
$this->directory = $path;
$this->task = null;
$this->gulp = $this->phpci->findBinary('gulp');
$this->gulp = $this->builder->findBinary('gulp');
$this->gulpfile = 'gulpfile.js';
// Handle options:
@ -68,7 +68,7 @@ class Gulp extends Plugin
if (IS_WIN) {
$cmd = 'cd /d %s && npm install';
}
if (!$this->phpci->executeCommand($cmd, $this->directory)) {
if (!$this->builder->executeCommand($cmd, $this->directory)) {
return false;
}
@ -82,6 +82,6 @@ class Gulp extends Plugin
$cmd .= ' %s'; // the task that will be executed
// and execute it
return $this->phpci->executeCommand($cmd, $this->directory, $this->gulpfile, $this->task);
return $this->builder->executeCommand($cmd, $this->directory, $this->gulpfile, $this->task);
}
}