Skip to content

Apply fixes from StyleCI #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function store(Tape $tape);
*
* @param string $name
*
* @throws NotFound If the requested tape has not been found.
* @throws NotFound if the requested tape has not been found
*
* @return Tape
*/
Expand Down
1 change: 0 additions & 1 deletion src/Track.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Http\Client\Plugin\Vcr;

use GuzzleHttp\Psr7\Request;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;

Expand Down
4 changes: 2 additions & 2 deletions src/Vcr.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function isTurnedOn()
/**
* Starts recording.
*
* @throws InvalidState if no tape has been inserted.
* @throws InvalidState if no tape has been inserted
*/
public function startRecording()
{
Expand Down Expand Up @@ -126,7 +126,7 @@ public function getTape()
*
* @param Tape|string $tape
*
* @throws InvalidState If the tape could not be inserted.
* @throws InvalidState if the tape could not be inserted
*/
public function insert($tape)
{
Expand Down
1 change: 0 additions & 1 deletion tests/ClientImplementation.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@

interface ClientImplementation extends HttpClient, HttpAsyncClient
{

}
2 changes: 1 addition & 1 deletion tests/Storage/FileStorageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use org\bovigo\vfs\vfsStreamDirectory;

/**
* @covers Http\Client\Plugin\Vcr\Storage\FileStorage
* @covers \Http\Client\Plugin\Vcr\Storage\FileStorage
*/
class FileStorageTest extends VcrTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Storage/InMemoryStorageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Http\Client\Plugin\Vcr\VcrTestCase;

/**
* @covers Http\Client\Plugin\Vcr\Storage\InMemoryStorage
* @covers \Http\Client\Plugin\Vcr\Storage\InMemoryStorage
*/
class InMemoryStorageTest extends VcrTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TapeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Http\Client\Plugin\Vcr\Exception\NotFound;

/**
* @covers Http\Client\Plugin\Vcr\Tape
* @covers \Http\Client\Plugin\Vcr\Tape
*/
class TapeTest extends VcrTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TrackTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Psr\Http\Message\StreamInterface;

/**
* @covers Http\Client\Plugin\Vcr\Track
* @covers \Http\Client\Plugin\Vcr\Track
*/
class TrackTest extends VcrTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/VcrClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Psr\Http\Message\ResponseInterface;

/**
* @covers Http\Client\Plugin\Vcr\VcrClient
* @covers \Http\Client\Plugin\Vcr\VcrClient
*/
class VcrClientTest extends VcrTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/VcrPluginTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Psr\Http\Message\ResponseInterface;

/**
* @covers Http\Client\Plugin\Vcr\VcrPlugin
* @covers \Http\Client\Plugin\Vcr\VcrPlugin
*/
class VcrPluginTest extends VcrTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/VcrTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Http\Client\Plugin\Vcr\Exception\NotFound;

/**
* @covers Http\Client\Plugin\Vcr\Vcr
* @covers \Http\Client\Plugin\Vcr\Vcr
*/
class VcrTest extends VcrTestCase
{
Expand Down