Completed
Push — master ( eabfbb...93a568 )
by Milan
01:38
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/Caching/Cache.php 1 patch
Spacing   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 	{
64 64
 		Utils\FileSystem::createDir($file->getPath(), 0755);
65 65
 
66
-		$handle = fopen(Utils\SafeStream::PROTOCOL . '://' . $this->temp . DIRECTORY_SEPARATOR . 'lock', 'w');
66
+		$handle = fopen(Utils\SafeStream::PROTOCOL.'://'.$this->temp.DIRECTORY_SEPARATOR.'lock', 'w');
67 67
 		$listRates = $driver->download($date, $this->allowedCurrencies);
68 68
 
69 69
 		if (self::isFileCurrent($file) || !$file->isFile()) {
@@ -79,8 +79,7 @@  discard block
 block discarded – undo
79 79
 	private function createListRate(Driver\ADriver $driver, \SplFileInfo $file, \DateTime $date = NULL)
80 80
 	{
81 81
 		return !$file->isFile() || (self::isFileCurrent($file) && $file->getMTime() < time()) ?
82
-			$this->saveCurrencies($driver, $file, $date) :
83
-			$listRate = unserialize(file_get_contents($file->getPathname()));
82
+			$this->saveCurrencies($driver, $file, $date) : $listRate = unserialize(file_get_contents($file->getPathname()));
84 83
 
85 84
 	}
86 85
 
@@ -88,7 +87,7 @@  discard block
 block discarded – undo
88 87
 	private function getRefresh()
89 88
 	{
90 89
 		if (!is_int($this->refresh)) {
91
-			$this->refresh = (new \DateTime('today ' . $this->refresh))->format('U');
90
+			$this->refresh = (new \DateTime('today '.$this->refresh))->format('U');
92 91
 			if (time() >= $this->refresh) {
93 92
 				$this->refresh += Utils\DateTime::DAY;
94 93
 			}
@@ -99,7 +98,7 @@  discard block
 block discarded – undo
99 98
 	private function createFileInfo(Driver\ADriver $driver, \DateTime $date = NULL)
100 99
 	{
101 100
 		$filename = $date === NULL ? self::FILE_CURRENT : $date->format('Y-m-d');
102
-		return new \SplFileInfo($this->temp . DIRECTORY_SEPARATOR . $driver->getName() . DIRECTORY_SEPARATOR . $filename);
101
+		return new \SplFileInfo($this->temp.DIRECTORY_SEPARATOR.$driver->getName().DIRECTORY_SEPARATOR.$filename);
103 102
 	}
104 103
 
105 104
 	private static function isFileCurrent(\SplFileInfo $file)
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.