Skip to content

Commit c017c47

Browse files
committed
Updated namespace
1 parent 3dad325 commit c017c47

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: spec/Generator/VaryGeneratorSpec.php renamed to spec/Cache/Generator/VaryGeneratorSpec.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace spec\Http\Client\Common\Plugin\Generator;
3+
namespace spec\Http\Client\Common\Plugin\Cache\Generator;
44

55
use PhpSpec\ObjectBehavior;
66
use Psr\Http\Message\RequestInterface;
@@ -14,12 +14,12 @@ public function let()
1414

1515
public function it_is_initializable()
1616
{
17-
$this->shouldHaveType('Http\Client\Common\Plugin\Generator\VaryGenerator');
17+
$this->shouldHaveType('Http\Client\Common\Plugin\Cache\Generator\VaryGenerator');
1818
}
1919

2020
public function it_is_a_key_generator()
2121
{
22-
$this->shouldImplement('Http\Client\Common\Plugin\Generator\CacheKeyGenerator');
22+
$this->shouldImplement('Http\Client\Common\Plugin\Cache\Generator\CacheKeyGenerator');
2323
}
2424

2525
public function it_generates_cache_from_request(RequestInterface $request)

Diff for: src/Generator/VaryGenerator.php renamed to src/Cache/Generator/VaryGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Http\Client\Common\Plugin\Generator;
3+
namespace Http\Client\Common\Plugin\Cache\Generator;
44

55
use Psr\Http\Message\RequestInterface;
66

0 commit comments

Comments
 (0)