Skip to content

Commit

Permalink
Merge pull request #5 from CMTelecom/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
PallieterVerhoeven authored Oct 30, 2017
2 parents e9d39e7 + 020bfa5 commit bdbce21
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [1.1.1] - 2017-10-30
### Changed
- change custom grouping fields to private for constancy

## [1.1.0] - 2017-09-21
### Added
- add custom grouping support
Expand Down Expand Up @@ -40,7 +44,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- initial code

[Unreleased]: https://github.com/CMTelecom/messaging-php/compare/1.1.0....HEAD
[Unreleased]: https://github.com/CMTelecom/messaging-php/compare/1.1.1....HEAD
[1.1.0]: https://github.com/CMTelecom/messaging-php/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/CMTelecom/messaging-php/compare/1.0.2...1.1.0
[1.0.2]: https://github.com/CMTelecom/messaging-php/compare/1.0.1...1.0.2
[1.0.1]: https://github.com/CMTelecom/messaging-php/compare/1.0.0...1.0.1
Expand Down
6 changes: 3 additions & 3 deletions src/CM/Messaging/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,23 +63,23 @@ class Message
*
* @var string
*/
protected $customGrouping1;
private $customGrouping1;

/**
* Applying custom grouping names to messages helps filter your messages. With up to three levels of custom grouping fields that can be set, subsets of messages can be further broken down.
* The custom grouping name can be up to 100 characters of your choosing. It’s recommended to limit the number of unique custom groupings to 1000.
*
* @var string
*/
protected $customGrouping2;
private $customGrouping2;

/**
* Applying custom grouping names to messages helps filter your messages. With up to three levels of custom grouping fields that can be set, subsets of messages can be further broken down.
* The custom grouping name can be up to 100 characters of your choosing. It’s recommended to limit the number of unique custom groupings to 1000.
*
* @var string
*/
protected $customGrouping3;
private $customGrouping3;

/**
* Used when sending multipart or concatenated SMS messages and always used together. Indicate the minimum and maximum of message parts that you allow the gateway to send for this message.
Expand Down

0 comments on commit bdbce21

Please sign in to comment.