Completed
Push — master ( 338029...da5103 )
by Milan
01:29
created
src/Currency/Formats.php 3 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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 		if (is_array($setup)) {
30 30
 			$setup = $this->numberFormatFactory->createUnit($setup);
31 31
 		} elseif (!$setup instanceof Number\UnitFormatState) {
32
-			throw new Exchange\InvalidArgumentException('$setup must be array or ' . Number\UnitPersistentFormatState::class);
32
+			throw new Exchange\InvalidArgumentException('$setup must be array or '.Number\UnitPersistentFormatState::class);
33 33
 		}
34 34
 
35 35
 		$this->default = $setup;
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.
src/Exchange.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -169,7 +169,7 @@
 block discarded – undo
169 169
 		if ($this->getListRates()->offsetExists($index)) {
170 170
 			return $this->getListRates()->offsetGet($index);
171 171
 		}
172
-		throw new UnknownCurrencyException('Undefined currency code: "' . $index . '".');
172
+		throw new UnknownCurrencyException('Undefined currency code: "'.$index.'".');
173 173
 	}
174 174
 
175 175
 	public function offsetExists($offset)
Please login to merge, or discard this patch.
src/Driver/Cnb/Day.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 		if ($date === NULL) {
56 56
 			return $url;
57 57
 		}
58
-		return $url . '?date=' . urlencode($date->format('d.m.Y'));
58
+		return $url.'?date='.urlencode($date->format('d.m.Y'));
59 59
 	}
60 60
 
61 61
 }
Please login to merge, or discard this patch.
src/Caching/Cache.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 
66 66
 	/**
67 67
 	 * @param string $hour
68
-	 * @return Storage
68
+	 * @return Cache
69 69
 	 */
70 70
 	public function setRefresh($hour)
71 71
 	{
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace h4kuna\Exchange\Caching;
4 4
 
5
-use h4kuna\Exchange\Currency,
6
-	h4kuna\Exchange\Driver,
7
-	Nette\Utils;
5
+use h4kuna\Exchange\Currency;
6
+use h4kuna\Exchange\Driver;
7
+use Nette\Utils;
8 8
 
9 9
 class Cache implements ICache
10 10
 {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	{
78 78
 		$listRates = $driver->download($date, $this->allowedCurrencies);
79 79
 
80
-		file_put_contents(Utils\SafeStream::PROTOCOL . '://' . $file->getPathname(), serialize($listRates));
80
+		file_put_contents(Utils\SafeStream::PROTOCOL.'://'.$file->getPathname(), serialize($listRates));
81 81
 		if (self::isFileCurrent($file)) {
82 82
 			touch($file->getPathname(), $this->getRefresh());
83 83
 		}
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 	{
90 90
 		if ($this->isFileValid($file)) {
91 91
 			Utils\FileSystem::createDir($file->getPath(), 0755);
92
-			$handle = fopen(Utils\SafeStream::PROTOCOL . '://' . $this->temp . DIRECTORY_SEPARATOR . 'lock', 'w');
92
+			$handle = fopen(Utils\SafeStream::PROTOCOL.'://'.$this->temp.DIRECTORY_SEPARATOR.'lock', 'w');
93 93
 
94 94
 			if ($this->isFileValid($file)) {
95 95
 				$listRate = $this->saveCurrencies($driver, $file, $date);
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	private function getRefresh()
116 116
 	{
117 117
 		if (!is_int($this->refresh)) {
118
-			$this->refresh = (new \DateTime('today ' . $this->refresh))->format('U');
118
+			$this->refresh = (new \DateTime('today '.$this->refresh))->format('U');
119 119
 			if (time() >= $this->refresh) {
120 120
 				$this->refresh += Utils\DateTime::DAY;
121 121
 			}
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	private function createFileInfo(Driver\ADriver $driver, \DateTime $date = NULL)
127 127
 	{
128 128
 		$filename = $date === NULL ? self::FILE_CURRENT : $date->format('Y-m-d');
129
-		return new \SplFileInfo($this->temp . DIRECTORY_SEPARATOR . $driver->getName() . DIRECTORY_SEPARATOR . $filename);
129
+		return new \SplFileInfo($this->temp.DIRECTORY_SEPARATOR.$driver->getName().DIRECTORY_SEPARATOR.$filename);
130 130
 	}
131 131
 
132 132
 	private static function isFileCurrent(\SplFileInfo $file)
Please login to merge, or discard this patch.