Skip to content

Commit

Permalink
Merge pull request #130 from findologic/make_datahelper_consts_public
Browse files Browse the repository at this point in the history
Expose DataHelper limit constants
  • Loading branch information
howard authored Dec 9, 2020
2 parents c7a021c + e406bbc commit 7669467
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/FINDOLOGIC/Export/Helpers/DataHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@
*/
class DataHelper
{
/*
/**
* Internal character limit for attribute values.
*/
private const ATTRIBUTE_CHARACTER_LIMIT = 16383;
public const ATTRIBUTE_CHARACTER_LIMIT = 16383;

/*
/**
* Internal character limit for item id.
*/
private const ITEM_ID_CHARACTER_LIMIT = 255;
public const ITEM_ID_CHARACTER_LIMIT = 255;

/*
/**
* Internal character limit for group names of CSV export.
*/
private const CSV_GROUP_CHARACTER_LIMIT = 255;
public const CSV_GROUP_CHARACTER_LIMIT = 255;

/*
/**
* Internal character limit for attribute key names of CSV export.
*/
private const CSV_ATTRIBUTE_KEY_CHARACTER_LIMIT = 247;
public const CSV_ATTRIBUTE_KEY_CHARACTER_LIMIT = 247;

/**
* Checks if the provided value is empty.
Expand Down

0 comments on commit 7669467

Please sign in to comment.