Skip to content

Commit 98d2950

Browse files
committed
Renamed Stubb to Stubs
1 parent 335fa86 commit 98d2950

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

tests/PHPCR/Tests/Util/Console/Command/BaseCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Symfony\Component\Console\Helper\HelperSet;
99
use PHPCR\Util\Console\Helper\PhpcrHelper;
1010

11-
require_once(__DIR__.'/Stubb/MockNode.php');
11+
require_once(__DIR__.'/Stubs/MockNode.php');
1212

1313
abstract class BaseCommandTest extends \PHPUnit_Framework_TestCase
1414
{
@@ -18,7 +18,7 @@ public function setUp()
1818
$this->workspace = $this->getMock('PHPCR\WorkspaceInterface');
1919
$this->repository = $this->getMock('PHPCR\RepositoryInterface');
2020

21-
$this->node1 = $this->getMock('PHPCR\Tests\Util\Console\Command\Stubb\MockNode');
21+
$this->node1 = $this->getMock('PHPCR\Tests\Util\Console\Command\Stubs\MockNode');
2222

2323
$this->dumperHelper = $this->getMockBuilder(
2424
'PHPCR\Util\Console\Helper\PhpcrConsoleDumperHelper'

tests/PHPCR/Tests/Util/Console/Command/NodeTypeListCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function setUp()
1212
parent::setUp();
1313
$this->application->add(new NodeTypeListCommand());
1414
$this->nodeTypeManager = $this->getMockBuilder(
15-
'PHPCR\Tests\Util\Console\Command\Stubb\MockNodeTypeManager'
15+
'PHPCR\Tests\Util\Console\Command\Stubs\MockNodeTypeManager'
1616
)->disableOriginalConstructor()->getMock();
1717
}
1818

tests/PHPCR/Tests/Util/Console/Command/NodeTypeRegisterCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Symfony\Component\Console\Application;
66
use PHPCR\Util\Console\Command\NodeTypeRegisterCommand;
77

8-
require_once(__DIR__.'/Stubb/MockNodeTypeManager.php');
8+
require_once(__DIR__.'/Stubs/MockNodeTypeManager.php');
99

1010
class NodeTypeRegisterCommandTest extends BaseCommandTest
1111
{
@@ -14,7 +14,7 @@ public function setUp()
1414
parent::setUp();
1515
$this->application->add(new NodeTypeRegisterCommand());
1616
$this->nodeTypeManager = $this->getMockBuilder(
17-
'PHPCR\Tests\Util\Console\Command\Stubb\MockNodeTypeManager'
17+
'PHPCR\Tests\Util\Console\Command\Stubs\MockNodeTypeManager'
1818
)->disableOriginalConstructor()->getMock();
1919
}
2020

tests/PHPCR/Tests/Util/Console/Command/Stubb/MockNode.php renamed to tests/PHPCR/Tests/Util/Console/Command/Stubs/MockNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHPCR\Tests\Util\Console\Command\Stubb;
3+
namespace PHPCR\Tests\Util\Console\Command\Stubs;
44

55
use PHPCR\NodeInterface;
66

tests/PHPCR/Tests/Util/Console/Command/Stubb/MockNodeTypeManager.php renamed to tests/PHPCR/Tests/Util/Console/Command/Stubs/MockNodeTypeManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace PHPCR\Tests\Util\Console\Command\Stubb;
3+
namespace PHPCR\Tests\Util\Console\Command\Stubs;
44

55
use PHPCR\NodeType\NodeTypeManagerInterface;
66

0 commit comments

Comments
 (0)