Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
attogram committed Apr 13, 2019
1 parent f5ad4e1 commit 1852235
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CurrencyExchangeRates.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CurrencyExchangeRates
use CustomizationTrait;

/** @var string Version*/
const VERSION = '1.0.0-pre.2';
const VERSION = '1.0.0';

/** @var Database|null */
protected $database;
Expand Down
3 changes: 2 additions & 1 deletion src/Feeds/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ public function __construct(string $api, int $verbosity = 1)
/**
* @param string $text
*/
public function verbose(string $text) {
public function verbose(string $text)
{
if ($this->verbosity > 0) {
print $text;
}
Expand Down

0 comments on commit 1852235

Please sign in to comment.