Completed
Push — master ( cea157...30c3aa )
by Jan
9s
created
src/Driver/CurlDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 	 */
21 21
 	public function getFileSize($path)
22 22
 	{
23
-		$ch = curl_init("file://" . rawurlencode($path));
23
+		$ch = curl_init("file://".rawurlencode($path));
24 24
 		curl_setopt($ch, CURLOPT_NOBODY, true);
25 25
 		curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
26 26
 		curl_setopt($ch, CURLOPT_HEADER, true);
Please login to merge, or discard this patch.