Skip to content

Commit

Permalink
#27500 Fix static checks
Browse files Browse the repository at this point in the history
  • Loading branch information
lbajsarowicz committed Apr 12, 2020
1 parent cd90f99 commit 41b507e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ColumnResolver
const COLUMN_REGION = 'Region/State';
const COLUMN_ZIP = 'Zip/Postal Code';
const COLUMN_WEIGHT = 'Weight (and above)';
const COLUMN_WEIGHT_DESTINATION = 'Weight (and above)';
const COLUMN_WEIGHT_DESTINATION = 'Weight vs. Destination';
const COLUMN_PRICE = 'Shipping Price';

/**
Expand All @@ -23,8 +23,8 @@ class ColumnResolver
self::COLUMN_REGION => 1,
self::COLUMN_ZIP => 2,
self::COLUMN_WEIGHT => 3,
self::COLUMN_WEIGHT_DESTINATION => 3,
self::COLUMN_PRICE => 4,
self::COLUMN_WEIGHT_DESTINATION => 4,
self::COLUMN_PRICE => 5,
];

/**
Expand Down

0 comments on commit 41b507e

Please sign in to comment.