@@ -147,6 +147,9 @@ |
||
147 | 147 | return (count($this->records) - 1); |
148 | 148 | } |
149 | 149 | |
150 | + /** |
|
151 | + * @param integer $index |
|
152 | + */ |
|
150 | 153 | public function deleteRecord($index) { |
151 | 154 | if (isset($this->records[$index])) { |
152 | 155 | $this->fileLength -= ($this->records[$index]->getContentLength() + 4); |
@@ -73,7 +73,7 @@ |
||
73 | 73 | * @param string|null $FileName Name of file to open |
74 | 74 | */ |
75 | 75 | public function saveToFile($FileName = null) { |
76 | - if (! is_null($FileName)) { |
|
76 | + if (!is_null($FileName)) { |
|
77 | 77 | $this->FileName = $FileName; |
78 | 78 | } |
79 | 79 |