Completed
Push — master ( 338029...da5103 )
by Milan
01:29
created
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.