Skip to content

Commit 85ad68b

Browse files
committed
Cleanup: Typos.
1 parent 3615102 commit 85ad68b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/VCR/Util/CurlHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use VCR\Response;
77

88
/**
9-
* CUrlhelper
9+
* cURL helper class.
1010
*/
1111
class CurlHelper
1212
{

src/VCR/Util/SoapClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected function realDoRequest($request, $location, $action, $version, $one_wa
7373
*
7474
* If no library hook is set, a new one is created.
7575
*
76-
* @return Soap SOAP library hook.
76+
* @return SoapHook SOAP library hook.
7777
*/
7878
protected function getLibraryHook()
7979
{

src/VCR/VCR.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Singleton interface to a Videorecorder.
77
*
8-
* @method VCR\Configuration configure()
8+
* @method Configuration configure()
99
* @method void insertCassette(string cassetteName)
1010
* @method void turnOn()
1111
* @method void turnOff()

src/VCR/Videorecorder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* will play back its response and not issue a HTTP request.
1616
*
1717
* If turned off, HTTP requests won't be intercepted and will
18-
* hit their origininal servers.
18+
* hit their original servers.
1919
*
2020
* @author Adrian Philipp <mail@adrian-philipp.com>
2121
*/
@@ -100,7 +100,7 @@ public function turnOff()
100100
/**
101101
* Eject the currently inserted cassette.
102102
*
103-
* Recording and playing back requets won't be possible after ejecting.
103+
* Recording and playing back requests won't be possible after ejecting.
104104
*
105105
* @api
106106
*
@@ -113,14 +113,14 @@ public function eject()
113113
}
114114

115115
/**
116-
* Inserts a cassette to record responses and requets on.
116+
* Inserts a cassette to record responses and requests on.
117117
*
118118
* @api
119119
*
120120
* @param string $cassetteName Name of the cassette (used for the cassette filename).
121121
*
122122
* @return void
123-
* @throws VCRExceptoin If videorecorder is turned off when inserting a cassette.
123+
* @throws VCRException If videorecorder is turned off when inserting a cassette.
124124
*/
125125
public function insertCassette($cassetteName)
126126
{

0 commit comments

Comments
 (0)