From 1852235d16820d5a0cf2007789dad2943a428cd7 Mon Sep 17 00:00:00 2001 From: Attogram Project Date: Sat, 13 Apr 2019 19:59:48 +0200 Subject: [PATCH] v1.0.0 --- src/CurrencyExchangeRates.php | 2 +- src/Feeds/Feed.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/CurrencyExchangeRates.php b/src/CurrencyExchangeRates.php index b017395..4eba33f 100644 --- a/src/CurrencyExchangeRates.php +++ b/src/CurrencyExchangeRates.php @@ -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; diff --git a/src/Feeds/Feed.php b/src/Feeds/Feed.php index c2ce1f9..1ee814f 100644 --- a/src/Feeds/Feed.php +++ b/src/Feeds/Feed.php @@ -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; }