@@ -1,4 +1,4 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | require '../vendor/autoload.php'; |
4 | -echo $f = BigFileTools::fromPath(__FILE__)->getSize()." bytes"; |
|
5 | 4 | \ No newline at end of file |
5 | +echo $f = BigFileTools::fromPath(__FILE__)->getSize() . " bytes"; |
|
6 | 6 | \ No newline at end of file |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function __construct(array $drivers) |
33 | 33 | { |
34 | - foreach($drivers as $driver) { |
|
34 | + foreach ($drivers as $driver) { |
|
35 | 35 | $this->addDriver($driver); |
36 | 36 | } |
37 | 37 | } |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | public function getFileSize($path) |
61 | 61 | { |
62 | 62 | $this->lastExceptions = []; |
63 | - foreach($this->drivers as $driver) { |
|
64 | - try{ |
|
63 | + foreach ($this->drivers as $driver) { |
|
64 | + try { |
|
65 | 65 | $result = $driver->getFileSize($path); |
66 | 66 | $this->lastUsedDriver = $driver; |
67 | 67 | return $result; |
@@ -26,8 +26,8 @@ |
||
26 | 26 | */ |
27 | 27 | public function __construct(array $driverClasses) |
28 | 28 | { |
29 | - foreach($driverClasses as $class) { |
|
30 | - try{ |
|
29 | + foreach ($driverClasses as $class) { |
|
30 | + try { |
|
31 | 31 | $this->drivers[] = new $class(); |
32 | 32 | } catch (Exception $driverException) { |
33 | 33 | $this->exceptions[] = $driverException; |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | throw new PrerequisiteException("Exec function is disabled"); |
17 | 17 | } |
18 | 18 | |
19 | - if(strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { |
|
19 | + if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { |
|
20 | 20 | $this->os = self::OS_WINDOWS; |
21 | 21 | } elseif (strtoupper(PHP_OS) == "DARWIN") { |
22 | 22 | $this->os = self::OS_MAC; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function getFileSize($path) |
35 | 35 | { |
36 | - switch($this->os) { |
|
36 | + switch ($this->os) { |
|
37 | 37 | case self::OS_WINDOWS: return $this->getFileSizeWindows($path); break; |
38 | 38 | case self::OS_LINUX: return $this->getFileSizeLinux($path); break; |
39 | 39 | case self::OS_MAC: return $this->getFileSizeMac($path); break; |
@@ -32,15 +32,15 @@ |
||
32 | 32 | // TODO: There is *hope* that ftell() or fseek() fails when file is over 4GB |
33 | 33 | // TODO: This really needs tests, any ideas how to test this in CI? (please let me know) |
34 | 34 | |
35 | - if($flockResult === false) { |
|
35 | + if ($flockResult === false) { |
|
36 | 36 | throw new Exception("Couldn't get file lock. Operation abandoned."); |
37 | 37 | } |
38 | 38 | |
39 | - if($seekResult !== 0) { |
|
39 | + if ($seekResult !== 0) { |
|
40 | 40 | throw new Exception("Seeking to end of file failed"); |
41 | 41 | } |
42 | 42 | |
43 | - if($position === false) { |
|
43 | + if ($position === false) { |
|
44 | 44 | throw new Exception("Cannot determine position in file. ftell() failed."); |
45 | 45 | } |
46 | 46 |
@@ -66,7 +66,7 @@ |
||
66 | 66 | // $readable = is_readable($file); // does not always return correct value for directories |
67 | 67 | |
68 | 68 | $fp = @fopen($this->path, "r"); // must be file and must be readable |
69 | - if($fp) { |
|
69 | + if ($fp) { |
|
70 | 70 | fclose($fp); |
71 | 71 | return true; |
72 | 72 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | { |
27 | 27 | |
28 | 28 | $path = realpath($path); |
29 | - if(!$path) { |
|
29 | + if (!$path) { |
|
30 | 30 | // TODO: use hack like http://stackoverflow.com/questions/4049856/replace-phps-realpath or http://www.php.net/manual/en/function.realpath.php#84012 |
31 | 31 | // probably as optional feature that can be turned on when you know, what are you doing |
32 | 32 |