Skip to content

Commit

Permalink
Update changelog (review)
Browse files Browse the repository at this point in the history
  • Loading branch information
arogachev committed Sep 15, 2023
1 parent 19f5539 commit 447097b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
- New #161: Add `ManagerInterface` (@arogachev)
- Chg #161: Raise PHP version to 8.0 (@arogachev)
- Enh #165: Improve perfomance (@arogachev)
- Enh #134: Improve handling and control of `Assignment::$createdAt` (@arogachev)
- Bug #178: Exclude parent role from `Manager::getAllChildRoles()` (@arogachev)
- Enh #134: Improve handling and control of `Assignment::$createdAt` (@arogachev)
- Chg #134: Add `$createdAt` argument to `ManagerInterface::assign()` (@arogachev)
- Chg #134: Replace arguments with `$assignment` argument in `AssignmentsStorageInterface::add()` (@arogachev)

## 1.0.2 April 20, 2023

Expand Down
3 changes: 2 additions & 1 deletion src/ManagerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ public function hasChild(string $parentName, string $childName): bool;
*
* @param string $itemName Name of the role or the permission to be assigned.
* @param int|string|Stringable $userId The user ID.
* @param int|null UNIX timestamp representing assignment creation time. When `null`, current time is used.
* @param int|null $createdAt UNIX timestamp representing assignment creation time. When `null`, current time is
* used.
*
* @throws Exception If the role or permission has already been assigned to the user.
*
Expand Down

0 comments on commit 447097b

Please sign in to comment.