@@ -2,7 +2,6 @@ |
||
2 | 2 | namespace TheCodingMachine\WashingMachine\Gitlab; |
3 | 3 | use Gitlab\Client; |
4 | 4 | use Gitlab\ResultPager; |
5 | -use GuzzleHttp\Psr7\Stream; |
|
6 | 5 | use GuzzleHttp\Psr7\StreamWrapper; |
7 | 6 | use Psr\Log\LoggerInterface; |
8 | 7 | use Symfony\Component\Filesystem\Filesystem; |
@@ -80,7 +80,7 @@ |
||
80 | 80 | if (!isset($this->pipelines[$projectName])) { |
81 | 81 | $pager = new ResultPager($this->client); |
82 | 82 | $this->pipelines[$projectName] = $pager->fetchAll($this->client->api('projects'), 'pipelines', |
83 | - [ $projectName ] |
|
83 | + [$projectName] |
|
84 | 84 | ); |
85 | 85 | } |
86 | 86 | return $this->pipelines[$projectName]; |