Completed
Branch master (34e7e6)
by Milan
04:52
created
src/Data.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -58,6 +58,9 @@  discard block
 block discarded – undo
58 58
 		return $this;
59 59
 	}
60 60
 
61
+	/**
62
+	 * @param string $s
63
+	 */
61 64
 	public function setStreet($s)
62 65
 	{
63 66
 		return $this->set('street', $s);
@@ -86,6 +89,9 @@  discard block
 block discarded – undo
86 89
 		}
87 90
 	}
88 91
 
92
+	/**
93
+	 * @param string $key
94
+	 */
89 95
 	private function set($key, $val)
90 96
 	{
91 97
 		if ($val instanceof DateTime) {
Please login to merge, or discard this patch.
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@
 block discarded – undo
2 2
 
3 3
 namespace h4kuna\Ares;
4 4
 
5
-use ArrayAccess,
6
-	Countable,
7
-	DateTime,
8
-	DateTimeZone,
9
-	Iterator,
10
-	Nette;
5
+use ArrayAccess;
6
+use Countable;
7
+use DateTime;
8
+use DateTimeZone;
9
+use Iterator;
10
+use Nette;
11 11
 
12 12
 /**
13 13
  * @author Milan Matějček
Please login to merge, or discard this patch.