Completed
Push — master ( 9e82e5...110ae7 )
by Milan
02:03
created
src/Ares.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,6 @@  discard block
 block discarded – undo
29 29
 	/**
30 30
 	 * Load fresh data.
31 31
 	 * @param int|string $in
32
-	 * @param bool $activeOnly
33 32
 	 * @return IData
34 33
 	 * @throws IdentificationNumberNotFoundException
35 34
 	 */
@@ -98,6 +97,10 @@  discard block
 block discarded – undo
98 97
 		}
99 98
 	}
100 99
 
100
+	/**
101
+	 * @param string $inn
102
+	 * @param boolean $activeOnly
103
+	 */
101 104
 	private function createUrl($inn, $activeOnly)
102 105
 	{
103 106
 		$this->activeMode = (bool) $activeOnly;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
 			'ico' => $inn,
106 106
 			'aktivni' => $activeOnly ? 'true' : 'false'
107 107
 		];
108
-		return self::URL . '?' . http_build_query($parameters);
108
+		return self::URL.'?'.http_build_query($parameters);
109 109
 	}
110 110
 
111 111
 	private function createDataProvider()
Please login to merge, or discard this patch.