Completed
Push — master ( 02f3e5...c5d900 )
by Michal
04:04
created
src/ShapeRecord.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
         $this->shapeType = $shapeType;
45 45
     }
46 46
 
47
+    /**
48
+     * @param ShapeFile $ShapeFile
49
+     */
47 50
     public function loadFromFile(&$ShapeFile, &$SHPFile, &$DBFFile) {
48 51
         $this->ShapeFile = $ShapeFile;
49 52
         $this->SHPFile = $SHPFile;
Please login to merge, or discard this patch.
src/ShapeFile.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -522,7 +522,7 @@
 block discarded – undo
522 522
      */
523 523
     public function hasMeasure()
524 524
     {
525
-         return $this->boundingBox['mmin'] != 0 || $this->boundingBox['mmax'] != 0;
525
+            return $this->boundingBox['mmin'] != 0 || $this->boundingBox['mmax'] != 0;
526 526
     }
527 527
 }
528 528
 
Please login to merge, or discard this patch.
src/Util.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
     /**
44 44
      * Changes endianity
45 45
      *
46
-     * @param string $value Binary value
47 46
      *
47
+     * @param string $binValue
48 48
      * @return string
49 49
      */
50 50
     public static function swap($binValue) {
Please login to merge, or discard this patch.