Skip to content
This repository was archived by the owner on Mar 15, 2020. It is now read-only.

Commit 45f51e1

Browse files
committed
Merge pull request #7 from pborreli/typos
Fixed typos
2 parents 606cf50 + ddb615c commit 45f51e1

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ phars which are released to a specific numbered version.
134134

135135
### Github Release Strategy
136136

137-
Beyond devleopment or nightly phars, if you are released numbered versions on
137+
Beyond development or nightly phars, if you are released numbered versions on
138138
Github (i.e. tags), you can upload additional files (such as phars) to include in
139139
the Github Release.
140140

src/Strategy/GithubStrategy.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class GithubStrategy implements StrategyInterface
6262
/**
6363
* Download the remote Phar file.
6464
*
65-
* @param Updated $updater
65+
* @param Updater $updater
6666
* @return void
6767
*/
6868
public function download(Updater $updater)
@@ -83,7 +83,7 @@ public function download(Updater $updater)
8383
/**
8484
* Retrieve the current version available remotely.
8585
*
86-
* @param Updated $updater
86+
* @param Updater $updater
8787
* @return string|bool
8888
*/
8989
public function getCurrentRemoteVersion(Updater $updater)
@@ -124,8 +124,8 @@ public function getCurrentRemoteVersion(Updater $updater)
124124
/**
125125
* Retrieve the current version of the local phar file.
126126
*
127-
* @param Updated $updater
128-
* @return void
127+
* @param Updater $updater
128+
* @return string
129129
*/
130130
public function getCurrentLocalVersion(Updater $updater)
131131
{
@@ -185,7 +185,7 @@ public function getPharName()
185185
/**
186186
* Set target stability
187187
*
188-
* @param string $name
188+
* @param string $stability
189189
*/
190190
public function setStability($stability)
191191
{

src/Strategy/ShaStrategy.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ShaStrategy implements StrategyInterface
3232
/**
3333
* Download the remote Phar file.
3434
*
35-
* @param Updated $updater
35+
* @param Updater $updater
3636
* @return void
3737
*/
3838
public function download(Updater $updater)
@@ -53,7 +53,7 @@ public function download(Updater $updater)
5353
/**
5454
* Retrieve the current version available remotely.
5555
*
56-
* @param Updated $updater
56+
* @param Updater $updater
5757
* @return string|bool
5858
*/
5959
public function getCurrentRemoteVersion(Updater $updater)
@@ -84,8 +84,8 @@ public function getCurrentRemoteVersion(Updater $updater)
8484
/**
8585
* Retrieve the current version of the local phar file.
8686
*
87-
* @param Updated $updater
88-
* @return void
87+
* @param Updater $updater
88+
* @return string
8989
*/
9090
public function getCurrentLocalVersion(Updater $updater)
9191
{

src/Strategy/StrategyInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@ interface StrategyInterface
2020
/**
2121
* Download the remote Phar file.
2222
*
23-
* @param Updated $updater
23+
* @param Updater $updater
2424
* @return void
2525
*/
2626
public function download(Updater $updater);
2727

2828
/**
2929
* Retrieve the current version available remotely.
3030
*
31-
* @param Updated $updater
31+
* @param Updater $updater
3232
* @return string|bool
3333
*/
3434
public function getCurrentRemoteVersion(Updater $updater);
3535

3636
/**
3737
* Retrieve the current version of the local phar file.
3838
*
39-
* @param Updated $updater
40-
* @return void
39+
* @param Updater $updater
40+
* @return string
4141
*/
4242
public function getCurrentLocalVersion(Updater $updater);
4343
}

0 commit comments

Comments
 (0)