@@ -33,7 +33,6 @@ |
||
| 33 | 33 | /** |
| 34 | 34 | * Collection constructor |
| 35 | 35 | * |
| 36 | - * @param array $data |
|
| 37 | 36 | */ |
| 38 | 37 | public function __construct(array $elements = array()) |
| 39 | 38 | { |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | public function getMegaBytes() |
| 88 | 88 | { |
| 89 | - return ($this->getKiloBytes() / 1024 ); |
|
| 89 | + return ($this->getKiloBytes() / 1024); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | /** |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | public function getGigaBytes() |
| 98 | 98 | { |
| 99 | - return ($this->getMegaBytes() / 1024 ); |
|
| 99 | + return ($this->getMegaBytes() / 1024); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | /** |