Completed
Push — master ( aecf8c...235d42 )
by Milan
01:51
created
src/FioPay.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 	{
116 116
 		$this->language = strtolower($lang);
117 117
 		if (!in_array($this->language, self::$langs)) {
118
-			throw new InvalidArgumentException($this->language . ' avaible are ' . implode(', ', self::$langs));
118
+			throw new InvalidArgumentException($this->language.' avaible are '.implode(', ', self::$langs));
119 119
 		}
120 120
 		return $this;
121 121
 	}
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 	/** @return string */
124 124
 	private function getUrl()
125 125
 	{
126
-		return self::REST_URL . 'import/';
126
+		return self::REST_URL.'import/';
127 127
 	}
128 128
 
129 129
 	/**
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 		$extension = strtolower($extension);
138 138
 		static $extensions = ['xml', 'abo'];
139 139
 		if (!in_array($extension, $extensions)) {
140
-			throw new InvalidArgumentException('Unsupported file upload format: ' . $extension . ' avaible are ' . implode(', ', $extensions));
140
+			throw new InvalidArgumentException('Unsupported file upload format: '.$extension.' avaible are '.implode(', ', $extensions));
141 141
 		}
142 142
 		$this->uploadExtension = $extension;
143 143
 		return $this;
Please login to merge, or discard this patch.