Skip to content

Commit

Permalink
fixing class attributes order
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Grigorchuk committed Oct 9, 2015
1 parent db6ff7c commit dac3e43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Mgrs/Mgrs.php
Original file line number Diff line number Diff line change
Expand Up @@ -474,10 +474,10 @@ public static function fromGridReference($mgrs_reference) {
// Return a new Mgrs object.

$mgrs = new static(
$easting,
$northing,
$zone_letter,
$zone_number
$easting,
$zone_number,
$zone_letter
);

// Set the accuracy according to the number of digits found.
Expand Down

0 comments on commit dac3e43

Please sign in to comment.