Skip to content

Commit 4cf4e01

Browse files
authored
Merge pull request #1 from php-http/analysis-XlokYd
Apply fixes from StyleCI
2 parents 21a9f2c + 47a4d21 commit 4cf4e01

11 files changed

+10
-12
lines changed

src/Storage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function store(Tape $tape);
1818
*
1919
* @param string $name
2020
*
21-
* @throws NotFound If the requested tape has not been found.
21+
* @throws NotFound if the requested tape has not been found
2222
*
2323
* @return Tape
2424
*/

src/Track.php

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

33
namespace Http\Client\Plugin\Vcr;
44

5-
use GuzzleHttp\Psr7\Request;
65
use Psr\Http\Message\RequestInterface;
76
use Psr\Http\Message\ResponseInterface;
87

src/Vcr.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function isTurnedOn()
6161
/**
6262
* Starts recording.
6363
*
64-
* @throws InvalidState if no tape has been inserted.
64+
* @throws InvalidState if no tape has been inserted
6565
*/
6666
public function startRecording()
6767
{
@@ -126,7 +126,7 @@ public function getTape()
126126
*
127127
* @param Tape|string $tape
128128
*
129-
* @throws InvalidState If the tape could not be inserted.
129+
* @throws InvalidState if the tape could not be inserted
130130
*/
131131
public function insert($tape)
132132
{

tests/ClientImplementation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,4 @@
77

88
interface ClientImplementation extends HttpClient, HttpAsyncClient
99
{
10-
1110
}

tests/Storage/FileStorageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use org\bovigo\vfs\vfsStreamDirectory;
1111

1212
/**
13-
* @covers Http\Client\Plugin\Vcr\Storage\FileStorage
13+
* @covers \Http\Client\Plugin\Vcr\Storage\FileStorage
1414
*/
1515
class FileStorageTest extends VcrTestCase
1616
{

tests/Storage/InMemoryStorageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Http\Client\Plugin\Vcr\VcrTestCase;
77

88
/**
9-
* @covers Http\Client\Plugin\Vcr\Storage\InMemoryStorage
9+
* @covers \Http\Client\Plugin\Vcr\Storage\InMemoryStorage
1010
*/
1111
class InMemoryStorageTest extends VcrTestCase
1212
{

tests/TapeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Http\Client\Plugin\Vcr\Exception\NotFound;
77

88
/**
9-
* @covers Http\Client\Plugin\Vcr\Tape
9+
* @covers \Http\Client\Plugin\Vcr\Tape
1010
*/
1111
class TapeTest extends VcrTestCase
1212
{

tests/TrackTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Psr\Http\Message\StreamInterface;
88

99
/**
10-
* @covers Http\Client\Plugin\Vcr\Track
10+
* @covers \Http\Client\Plugin\Vcr\Track
1111
*/
1212
class TrackTest extends VcrTestCase
1313
{

tests/VcrClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use Psr\Http\Message\ResponseInterface;
88

99
/**
10-
* @covers Http\Client\Plugin\Vcr\VcrClient
10+
* @covers \Http\Client\Plugin\Vcr\VcrClient
1111
*/
1212
class VcrClientTest extends VcrTestCase
1313
{

tests/VcrPluginTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use Psr\Http\Message\ResponseInterface;
1111

1212
/**
13-
* @covers Http\Client\Plugin\Vcr\VcrPlugin
13+
* @covers \Http\Client\Plugin\Vcr\VcrPlugin
1414
*/
1515
class VcrPluginTest extends VcrTestCase
1616
{

tests/VcrTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Http\Client\Plugin\Vcr\Exception\NotFound;
77

88
/**
9-
* @covers Http\Client\Plugin\Vcr\Vcr
9+
* @covers \Http\Client\Plugin\Vcr\Vcr
1010
*/
1111
class VcrTest extends VcrTestCase
1212
{

0 commit comments

Comments
 (0)