Skip to content

Commit e47d2fa

Browse files
author
Martins Sipenko
committed
Fix #13 Use old namespaces from satooshi/php-coveralls 0.6.*
1 parent 8dcb747 commit e47d2fa

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Diff for: src/CodeClimate/Bundle/TestReporterBundle/CoverageCollector.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
use CodeClimate\Component\System\Git\GitCommand;
55
use CodeClimate\Bundle\TestReporterBundle\Entity\JsonFile;
6-
use Satooshi\Bundle\CoverallsV1Bundle\Api\Jobs;
7-
use Satooshi\Bundle\CoverallsV1Bundle\Config\Configuration;
6+
use Contrib\Bundle\CoverallsV1Bundle\Api\Jobs;
7+
use Contrib\Bundle\CoverallsV1Bundle\Config\Configuration;
88

99
class CoverageCollector
1010
{

Diff for: src/CodeClimate/Bundle/TestReporterBundle/Entity/JsonFile.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
use CodeClimate\Component\System\Git\GitCommand;
55
use CodeClimate\Bundle\TestReporterBundle\Entity\CiInfo;
66
use CodeClimate\Bundle\TestReporterBundle\Version;
7+
use Contrib\Bundle\CoverallsV1Bundle\Entity\JsonFile as SatooshiJsonFile;
78

8-
class JsonFile extends \Satooshi\Bundle\CoverallsV1Bundle\Entity\JsonFile
9+
class JsonFile extends SatooshiJsonFile
910
{
1011
public function toArray()
1112
{

Diff for: src/CodeClimate/Component/System/Git/GitCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
namespace CodeClimate\Component\System\Git;
33

4-
use Satooshi\Component\System\SystemCommand;
4+
use Contrib\Component\System\SystemCommand;
55

66
class GitCommand extends SystemCommand
77
{

0 commit comments

Comments
 (0)