Completed
Push — master ( 91d607...0132ab )
by Milan
01:47
created
src/Data.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
 	private function setFileNumberAndCourt()
83 83
 	{
84 84
 		if (!isset($this->data['court_all']) && array_key_exists('file_number', $this->data) && array_key_exists('court', $this->data)) {
85
-			$this->data['court_all'] = $this->data['file_number'] . ', ' . $this->data['court'];
85
+			$this->data['court_all'] = $this->data['file_number'].', '.$this->data['court'];
86 86
 		}
87 87
 	}
88 88
 
Please login to merge, or discard this patch.
src/Ares.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
 	private function loadXML($inn)
53 53
 	{
54 54
 		$client = new GuzzleHttp\Client();
55
-		$xmlSource = $client->request('GET', self::URL . (string) $inn)->getBody();
55
+		$xmlSource = $client->request('GET', self::URL.(string) $inn)->getBody();
56 56
 		$xml = @simplexml_load_string($xmlSource);
57 57
 		if (!$xml) {
58 58
 			throw new InNotFoundExceptions;
Please login to merge, or discard this patch.
src/DataProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,11 +90,11 @@
 block discarded – undo
90 90
 	{
91 91
 		$street = strval($uc);
92 92
 		if (is_numeric($street)) {
93
-			$street = $nco . ' ' . $street;
93
+			$street = $nco.' '.$street;
94 94
 		}
95 95
 
96 96
 		if ($co) {
97
-			$street .= '/' . $co;
97
+			$street .= '/'.$co;
98 98
 		}
99 99
 
100 100
 		$this->data->setStreet($street);
Please login to merge, or discard this patch.