Skip to content

Commit

Permalink
prepare 4.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Jul 16, 2019
1 parent aebfdac commit f785c49
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All Notable changes to `Period` will be documented in this file

## 4.8.1 - TBD
## 4.8.1 - 2019-07-16

### Added

Expand Down
6 changes: 6 additions & 0 deletions src/Sequence.php
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,8 @@ private function filterOffset(int $offset): ?int
* @see ::get
*
* @param mixed $offset the index of the Period instance to retrieve.
*
* @throws InvalidIndex If the offset is illegal for the current sequence
*/
public function offsetGet($offset): Period
{
Expand All @@ -394,6 +396,8 @@ public function offsetGet($offset): Period
* @see ::remove
*
* @param mixed $offset the index of the Period instance to remove.
*
* @throws InvalidIndex If the offset is illegal for the current sequence
*/
public function offsetUnset($offset): void
{
Expand All @@ -407,6 +411,8 @@ public function offsetUnset($offset): void
*
* @param mixed $offset the index of the Period to add or update.
* @param mixed $interval the Period instance to add.
*
* @throws InvalidIndex If the offset is illegal for the current sequence
*/
public function offsetSet($offset, $interval): void
{
Expand Down

0 comments on commit f785c49

Please sign in to comment.