Skip to content

Commit 020bfa5

Browse files
author
Pallieter Verhpeven
committed
Change custom grouping to private fields
1 parent c7118b0 commit 020bfa5

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

77
## [Unreleased]
8+
## [1.1.1] - 2017-10-30
9+
### Changed
10+
- change custom grouping fields to private for constancy
11+
812
## [1.1.0] - 2017-09-21
913
### Added
1014
- add custom grouping support
@@ -40,7 +44,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4044
### Added
4145
- initial code
4246

43-
[Unreleased]: https://github.com/CMTelecom/messaging-php/compare/1.1.0....HEAD
47+
[Unreleased]: https://github.com/CMTelecom/messaging-php/compare/1.1.1....HEAD
48+
[1.1.0]: https://github.com/CMTelecom/messaging-php/compare/1.1.0...1.1.1
4449
[1.1.0]: https://github.com/CMTelecom/messaging-php/compare/1.0.2...1.1.0
4550
[1.0.2]: https://github.com/CMTelecom/messaging-php/compare/1.0.1...1.0.2
4651
[1.0.1]: https://github.com/CMTelecom/messaging-php/compare/1.0.0...1.0.1

src/CM/Messaging/Message.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,23 @@ class Message
6363
*
6464
* @var string
6565
*/
66-
protected $customGrouping1;
66+
private $customGrouping1;
6767

6868
/**
6969
* 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.
7070
* 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.
7171
*
7272
* @var string
7373
*/
74-
protected $customGrouping2;
74+
private $customGrouping2;
7575

7676
/**
7777
* 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.
7878
* 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.
7979
*
8080
* @var string
8181
*/
82-
protected $customGrouping3;
82+
private $customGrouping3;
8383

8484
/**
8585
* 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.

0 commit comments

Comments
 (0)