Skip to content

Commit

Permalink
Merge pull request #1 from krylov123/fix_availability
Browse files Browse the repository at this point in the history
Fix Availability values to meet latest google merchant requirements
  • Loading branch information
Vitaly Baev authored Apr 4, 2018
2 parents f74b22a + 7645c7a commit 484369d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Product/Availability/Availability.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

class Availability
{
const IN_STOCK = 'in_stock';
const IN_STOCK = 'in stock';

const OUT_OF_STOCK = 'out_of_stock';
const OUT_OF_STOCK = 'out of stock';

const PREORDER = 'preorder';
}

0 comments on commit 484369d

Please sign in to comment.