@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * Convert string into integer |
47 | 47 | * Must be precise number, otherwise you will see and exception. |
48 | 48 | * |
49 | - * @param $valueAsString |
|
49 | + * @param string $valueAsString |
|
50 | 50 | * @return BigInteger |
51 | 51 | * @throws Exception |
52 | 52 | */ |
@@ -65,6 +65,9 @@ discard block |
||
65 | 65 | |
66 | 66 | } |
67 | 67 | |
68 | + /** |
|
69 | + * @param string $path |
|
70 | + */ |
|
68 | 71 | private function getFileSizeWindows($path) |
69 | 72 | { |
70 | 73 | $escapedPath = escapeshellarg($path); |
@@ -73,6 +76,9 @@ discard block |
||
73 | 76 | ); |
74 | 77 | } |
75 | 78 | |
79 | + /** |
|
80 | + * @param string $path |
|
81 | + */ |
|
76 | 82 | private function getFileSizeLinux($path) |
77 | 83 | { |
78 | 84 | $escapedPath = escapeshellarg($path); |
@@ -81,6 +87,9 @@ discard block |
||
81 | 87 | ); |
82 | 88 | } |
83 | 89 | |
90 | + /** |
|
91 | + * @param string $path |
|
92 | + */ |
|
84 | 93 | private function getFileSizeMac($path) |
85 | 94 | { |
86 | 95 | $escapedPath = escapeshellarg($path); |