Completed
Pull Request — master (#18)
by Michal
05:45 queued 02:23
created
src/ShapeFile.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -270,6 +270,9 @@  discard block
 block discarded – undo
270 270
         return($result);
271 271
     }
272 272
 
273
+    /**
274
+     * @param integer $index
275
+     */
273 276
     private function _deleteRecordFromDBF($index) {
274 277
         if (@dbase_delete_record($this->DBFFile, $index)) {
275 278
             dbase_pack($this->DBFFile);
@@ -385,6 +388,11 @@  discard block
 block discarded – undo
385 388
         }
386 389
     }
387 390
 
391
+    /**
392
+     * @param boolean $toWrite
393
+     * @param string $extension
394
+     * @param string $name
395
+     */
388 396
     private function _openFile($toWrite, $extension, $name) {
389 397
         $shp_name = $this->_getFilename($extension);
390 398
         $result = @fopen($shp_name, ($toWrite ? 'wb+' : 'rb'));
Please login to merge, or discard this patch.