Skip to content

Commit c5c9807

Browse files
committed
updating to php-mock-0.7
1 parent 3fe0a33 commit c5c9807

6 files changed

+7
-7
lines changed

classes/DefaultArgumentRemover.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace phpmock\phpunit;
44

5-
use malkusch\phpmock\MockFunctionHelper;
5+
use phpmock\MockFunctionHelper;
66

77
/**
88
* Removes default arguments from the invocation.

classes/MockDisabler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace phpmock\phpunit;
44

5-
use malkusch\phpmock\Deactivatable;
5+
use phpmock\Deactivatable;
66

77
/**
88
* Test listener for PHPUnit integration.

classes/PHPMock.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
namespace phpmock\phpunit;
44

55
use phpmock\integration\MockDelegateFunctionBuilder;
6-
use malkusch\phpmock\MockBuilder;
7-
use malkusch\phpmock\Deactivatable;
6+
use phpmock\MockBuilder;
7+
use phpmock\Deactivatable;
88

99
/**
1010
* Adds building a function mock functionality into PHPUnit_Framework_TestCase.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"require": {
2020
"php": ">=5.4",
2121
"phpunit/phpunit": "^4",
22-
"php-mock/php-mock-integration": "^0.2"
22+
"php-mock/php-mock-integration": "^0.3"
2323
},
2424
"require-dev": {
2525
"mockery/mockery": "^0.9"

tests/MockDisablerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace phpmock\phpunit;
44

5-
use malkusch\phpmock\Mock;
5+
use phpmock\Mock;
66

77
/**
88
* Tests MockDisabler.

tests/PHPMockTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace phpmock\phpunit;
44

5-
use malkusch\phpmock\AbstractMockTest;
5+
use phpmock\AbstractMockTest;
66

77
/**
88
* Tests PHPMock.

0 commit comments

Comments
 (0)