Completed
Pull Request — master (#15)
by
unknown
05:40
created
src/DataProvider.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	{
103 103
 		$this->data['court_all'] = null;
104 104
 		if ($this->data['file_number'] && $this->data['court']) {
105
-			$this->data['court_all'] = $this->data['file_number'] . ', ' . $this->data['court'];
105
+			$this->data['court_all'] = $this->data['file_number'].', '.$this->data['court'];
106 106
 		}
107 107
 	}
108 108
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
 	public function setHouseNumber(string $cd, string $co)
132 132
 	{
133
-		$this->data['house_number'] = self::toNull(trim($cd . '/' . $co, '/'));
133
+		$this->data['house_number'] = self::toNull(trim($cd.'/'.$co, '/'));
134 134
 		return $this;
135 135
 	}
136 136
 
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -76,11 +76,11 @@
 block discarded – undo
76 76
 	}
77 77
 	
78 78
 	
79
-    	public function setDissolved(string $date)
80
-    	{
79
+		public function setDissolved(string $date)
80
+		{
81 81
 		$this->data['dissolved'] = new DateTime($date, new DateTimeZone('Europe/Prague'));
82 82
 		return $this;
83
-    	}
83
+		}
84 84
 
85 85
 
86 86
 	public function setFileNumber(string $fileNumber)
Please login to merge, or discard this patch.
src/Ares.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 		}
61 61
 		$xml = @simplexml_load_string($xmlSource);
62 62
 		if (!$xml) {
63
-			throw new ConnectionException('No xml from ARES. IN ' . $in);
63
+			throw new ConnectionException('No xml from ARES. IN '.$in);
64 64
 		}
65 65
 
66 66
 		$ns = $xml->getDocNamespaces();
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 			'ico' => $inn,
105 105
 			'aktivni' => 'false',
106 106
 		];
107
-		return self::URL . '?' . http_build_query($parameters);
107
+		return self::URL.'?'.http_build_query($parameters);
108 108
 	}
109 109
 
110 110
 
Please login to merge, or discard this patch.