Completed
Push — master ( eabfbb...93a568 )
by Milan
01:38
created
src/Currency/Formats.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@
 block discarded – undo
42 42
 		unset($this->formats[$code]);
43 43
 	}
44 44
 
45
+	/**
46
+	 * @param string $code
47
+	 */
45 48
 	public function getFormat($code)
46 49
 	{
47 50
 		if (isset($this->formats[$code])) {
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace h4kuna\Exchange\Currency;
4 4
 
5
-use h4kuna\Exchange,
6
-	h4kuna\Number;
5
+use h4kuna\Exchange;
6
+use h4kuna\Number;
7 7
 
8 8
 class Formats
9 9
 {
Please login to merge, or discard this patch.
src/Driver/ADriver.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
 		return $currencies;
45 45
 	}
46 46
 
47
+	/**
48
+	 * @param string $format
49
+	 */
47 50
 	protected function setDate($format, $value)
48 51
 	{
49 52
 		$this->date = DateTime::createFromFormat($format, $value);
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace h4kuna\Exchange\Driver;
4 4
 
5
-use DateTime,
6
-	h4kuna\Exchange;
5
+use DateTime;
6
+use h4kuna\Exchange;
7 7
 
8 8
 /**
9 9
  * Download currency from server.
Please login to merge, or discard this patch.
src/Http/CookieManager.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace h4kuna\Exchange\Http;
4 4
 
5
-use h4kuna\Exchange,
6
-	Nette\Http;
5
+use h4kuna\Exchange;
6
+use Nette\Http;
7 7
 
8 8
 class CookieManager
9 9
 {
Please login to merge, or discard this patch.