Completed
Pull Request — master (#21)
by Tomáš
03:58
created
src/Nette/Cache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 	private function getRefresh()
18 18
 	{
19 19
 		if (is_string($this->refresh)) {
20
-			$this->refresh = new DateTime('today ' . $this->refresh);
20
+			$this->refresh = new DateTime('today '.$this->refresh);
21 21
 			if (new DateTime >= $this->refresh) {
22 22
 				$this->refresh->modify('+1 day');
23 23
 			}
Please login to merge, or discard this patch.
src/Nette/CacheFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 		$class = $this->storageClass;
35 35
 		$service = new $class($this->storage, $name);
36 36
 		if (!($service instanceof Storage\IStock)) {
37
-			throw new ExchangeException('Storage must be instance ' . __NAMESPACE__ . '\IStock.');
37
+			throw new ExchangeException('Storage must be instance '.__NAMESPACE__.'\IStock.');
38 38
 		}
39 39
 		return $service;
40 40
 	}
Please login to merge, or discard this patch.
src/NoFramework/ExchangeFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
 	protected function createFactoryCache()
66 66
 	{
67
-		return new CacheFactory(__NAMESPACE__ . '\Cache', $this->temp);
67
+		return new CacheFactory(__NAMESPACE__.'\Cache', $this->temp);
68 68
 	}
69 69
 
70 70
 }
Please login to merge, or discard this patch.
src/NoFramework/Cache.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
 	public function __construct($name, $temp)
20 20
 	{
21
-		$this->path = $temp . DIRECTORY_SEPARATOR . str_replace('\\', '-', $name) . DIRECTORY_SEPARATOR;
21
+		$this->path = $temp.DIRECTORY_SEPARATOR.str_replace('\\', '-', $name).DIRECTORY_SEPARATOR;
22 22
 		@mkdir($this->path, 0777, TRUE);
23 23
 	}
24 24
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	private function getRefresh()
51 51
 	{
52 52
 		if (is_string($this->refresh)) {
53
-			$this->refresh = new DateTime('today ' . $this->refresh);
53
+			$this->refresh = new DateTime('today '.$this->refresh);
54 54
 			if (new DateTime >= $this->refresh) {
55 55
 				$this->refresh->modify('+1 day');
56 56
 			}
@@ -71,25 +71,25 @@  discard block
 block discarded – undo
71 71
 
72 72
 	public function offsetExists($offset)
73 73
 	{
74
-		return is_file($this->path . $offset) && (!$this->getRefresh() || date(DateTime::ISO8601, filemtime($this->path . $offset)) < $this->refresh->format(DateTime::ISO8601));
74
+		return is_file($this->path.$offset) && (!$this->getRefresh() || date(DateTime::ISO8601, filemtime($this->path.$offset)) < $this->refresh->format(DateTime::ISO8601));
75 75
 	}
76 76
 
77 77
 	public function offsetGet($offset)
78 78
 	{
79 79
 		if ($this->offsetExists($offset)) {
80
-			return unserialize(file_get_contents($this->path . $offset));
80
+			return unserialize(file_get_contents($this->path.$offset));
81 81
 		}
82 82
 		return NULL;
83 83
 	}
84 84
 
85 85
 	public function offsetSet($offset, $value)
86 86
 	{
87
-		file_put_contents($this->path . $offset, serialize($value));
87
+		file_put_contents($this->path.$offset, serialize($value));
88 88
 	}
89 89
 
90 90
 	public function offsetUnset($offset)
91 91
 	{
92
-		@unlink($this->path . $offset);
92
+		@unlink($this->path.$offset);
93 93
 	}
94 94
 
95 95
 //put your code here
Please login to merge, or discard this patch.
src/Exchange.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 		if ($this->offsetExists($index)) {
169 169
 			return parent::offsetGet($index);
170 170
 		}
171
-		throw new UnknownCurrencyException('Undefined currency code: ' . $index . ', you must call loadCurrency before.');
171
+		throw new UnknownCurrencyException('Undefined currency code: '.$index.', you must call loadCurrency before.');
172 172
 	}
173 173
 
174 174
 // </editor-fold>
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 				$profil = $this->getDefaultFormat();
298 298
 				$profil->setSymbol($code);
299 299
 				foreach ($property as $k => $v) {
300
-					$k = 'set' . ucfirst($k);
300
+					$k = 'set'.ucfirst($k);
301 301
 					$profil->$k($v);
302 302
 				}
303 303
 			} else {
Please login to merge, or discard this patch.
src/Storage/Warehouse.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	/** @return string */
102 102
 	public function getName()
103 103
 	{
104
-		return $this->getNameOf($this->date) . $this->download->getName();
104
+		return $this->getNameOf($this->date).$this->download->getName();
105 105
 	}
106 106
 
107 107
 	/**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	 */
111 111
 	public function loadNameByDriver(Exchange\Driver\Download $driver)
112 112
 	{
113
-		return $this->getNameOf($this->date) . $driver->getName();
113
+		return $this->getNameOf($this->date).$driver->getName();
114 114
 	}
115 115
 
116 116
 	/**
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	public function loadNameByDate(DateTime $date = NULL)
121 121
 	{
122
-		return $this->getNameOf($date) . $this->download->getName();
122
+		return $this->getNameOf($date).$this->download->getName();
123 123
 	}
124 124
 
125 125
 	/**
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 
135 135
 		$ymd = $date->format('Y-m-d');
136 136
 		if (date('Y-m-d') > $ymd) {
137
-			return $ymd . '\\';
137
+			return $ymd.'\\';
138 138
 		}
139 139
 
140 140
 		return NULL;
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
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
 	protected function createUrlDay($url, DateTime $date)
60 60
 	{
61
-		return $url . '?date=' . urlencode($date->format('d.m.Y'));
61
+		return $url.'?date='.urlencode($date->format('d.m.Y'));
62 62
 	}
63 63
 
64 64
 	/**
Please login to merge, or discard this patch.
src/Driver/Download.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 				continue;
32 32
 			}
33 33
 			if (isset($currencies[$property->getCode()])) {
34
-				throw new Exchange\DuplicityCurrencyException('Downloaded duplicity: ' . $property->getCode());
34
+				throw new Exchange\DuplicityCurrencyException('Downloaded duplicity: '.$property->getCode());
35 35
 			}
36 36
 			$currencies[$property->getCode()] = $property;
37 37
 		}
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 	/** @return string */
42 42
 	public function getName()
43 43
 	{
44
-		return str_replace(__NAMESPACE__ . '\\', '', get_class($this));
44
+		return str_replace(__NAMESPACE__.'\\', '', get_class($this));
45 45
 	}
46 46
 
47 47
 	/**
Please login to merge, or discard this patch.