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

Commit

Permalink
Merge pull request #7 from pborreli/typos
Browse files Browse the repository at this point in the history
Fixed typos
  • Loading branch information
padraic committed May 26, 2015
2 parents 606cf50 + ddb615c commit 45f51e1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ phars which are released to a specific numbered version.

### Github Release Strategy

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

Expand Down
10 changes: 5 additions & 5 deletions src/Strategy/GithubStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class GithubStrategy implements StrategyInterface
/**
* Download the remote Phar file.
*
* @param Updated $updater
* @param Updater $updater
* @return void
*/
public function download(Updater $updater)
Expand All @@ -83,7 +83,7 @@ public function download(Updater $updater)
/**
* Retrieve the current version available remotely.
*
* @param Updated $updater
* @param Updater $updater
* @return string|bool
*/
public function getCurrentRemoteVersion(Updater $updater)
Expand Down Expand Up @@ -124,8 +124,8 @@ public function getCurrentRemoteVersion(Updater $updater)
/**
* Retrieve the current version of the local phar file.
*
* @param Updated $updater
* @return void
* @param Updater $updater
* @return string
*/
public function getCurrentLocalVersion(Updater $updater)
{
Expand Down Expand Up @@ -185,7 +185,7 @@ public function getPharName()
/**
* Set target stability
*
* @param string $name
* @param string $stability
*/
public function setStability($stability)
{
Expand Down
8 changes: 4 additions & 4 deletions src/Strategy/ShaStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ShaStrategy implements StrategyInterface
/**
* Download the remote Phar file.
*
* @param Updated $updater
* @param Updater $updater
* @return void
*/
public function download(Updater $updater)
Expand All @@ -53,7 +53,7 @@ public function download(Updater $updater)
/**
* Retrieve the current version available remotely.
*
* @param Updated $updater
* @param Updater $updater
* @return string|bool
*/
public function getCurrentRemoteVersion(Updater $updater)
Expand Down Expand Up @@ -84,8 +84,8 @@ public function getCurrentRemoteVersion(Updater $updater)
/**
* Retrieve the current version of the local phar file.
*
* @param Updated $updater
* @return void
* @param Updater $updater
* @return string
*/
public function getCurrentLocalVersion(Updater $updater)
{
Expand Down
8 changes: 4 additions & 4 deletions src/Strategy/StrategyInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ interface StrategyInterface
/**
* Download the remote Phar file.
*
* @param Updated $updater
* @param Updater $updater
* @return void
*/
public function download(Updater $updater);

/**
* Retrieve the current version available remotely.
*
* @param Updated $updater
* @param Updater $updater
* @return string|bool
*/
public function getCurrentRemoteVersion(Updater $updater);

/**
* Retrieve the current version of the local phar file.
*
* @param Updated $updater
* @return void
* @param Updater $updater
* @return string
*/
public function getCurrentLocalVersion(Updater $updater);
}

0 comments on commit 45f51e1

Please sign in to comment.