Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
| 1 | <?php |
||
| 45 | class RoleService implements RoleServiceInterface |
||
| 46 | { |
||
| 47 | /** |
||
| 48 | * Aggregated service. |
||
| 49 | * |
||
| 50 | * @var \eZ\Publish\API\Repository\RoleService |
||
| 51 | */ |
||
| 52 | protected $service; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * SignalDispatcher. |
||
| 56 | * |
||
| 57 | * @var \eZ\Publish\Core\SignalSlot\SignalDispatcher |
||
| 58 | */ |
||
| 59 | protected $signalDispatcher; |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Constructor. |
||
| 63 | * |
||
| 64 | * Construct service object from aggregated service and signal |
||
| 65 | * dispatcher |
||
| 66 | * |
||
| 67 | * @param \eZ\Publish\API\Repository\RoleService $service |
||
| 68 | * @param \eZ\Publish\Core\SignalSlot\SignalDispatcher $signalDispatcher |
||
| 69 | */ |
||
| 70 | public function __construct(RoleServiceInterface $service, SignalDispatcher $signalDispatcher) |
||
| 75 | |||
| 76 | /** |
||
| 77 | * Creates a new RoleDraft. |
||
| 78 | * |
||
| 79 | * @since 6.0 |
||
| 80 | * |
||
| 81 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to create a role |
||
| 82 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException |
||
| 83 | * if the name of the role already exists or if limitation of the same type |
||
| 84 | * is repeated in the policy create struct or if limitation is not allowed on module/function |
||
| 85 | * @throws \eZ\Publish\API\Repository\Exceptions\LimitationValidationException if a policy limitation in the $roleCreateStruct is not valid |
||
| 86 | * |
||
| 87 | * @param \eZ\Publish\API\Repository\Values\User\RoleCreateStruct $roleCreateStruct |
||
| 88 | * |
||
| 89 | * @return \eZ\Publish\API\Repository\Values\User\RoleDraft |
||
| 90 | */ |
||
| 91 | public function createRole(RoleCreateStruct $roleCreateStruct) |
||
| 104 | |||
| 105 | /** |
||
| 106 | * Creates a new RoleDraft for existing Role. |
||
| 107 | * |
||
| 108 | * @since 6.0 |
||
| 109 | * |
||
| 110 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to create a role |
||
| 111 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if the Role already has a Role Draft that will need to be removed first |
||
| 112 | * @throws \eZ\Publish\API\Repository\Exceptions\LimitationValidationException if a policy limitation in the $roleCreateStruct is not valid |
||
| 113 | * |
||
| 114 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 115 | * |
||
| 116 | * @return \eZ\Publish\API\Repository\Values\User\RoleDraft |
||
| 117 | */ |
||
| 118 | public function createRoleDraft(Role $role) |
||
| 131 | |||
| 132 | /** |
||
| 133 | * Loads a role for the given id. |
||
| 134 | * |
||
| 135 | * @since 6.0 |
||
| 136 | * |
||
| 137 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read this role |
||
| 138 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if a role with the given id was not found |
||
| 139 | * |
||
| 140 | * @param mixed $id |
||
| 141 | * |
||
| 142 | * @return \eZ\Publish\API\Repository\Values\User\RoleDraft |
||
| 143 | */ |
||
| 144 | public function loadRoleDraft($id) |
||
| 148 | |||
| 149 | /** |
||
| 150 | * Loads a RoleDraft by the ID of the role it was created from. |
||
| 151 | * |
||
| 152 | * @param mixed $roleId ID of the role the draft was created from. |
||
| 153 | * |
||
| 154 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read this role |
||
| 155 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if a RoleDraft with the given id was not found |
||
| 156 | * |
||
| 157 | * @return \eZ\Publish\API\Repository\Values\User\RoleDraft |
||
| 158 | */ |
||
| 159 | public function loadRoleDraftByRoleId($roleId) |
||
| 163 | |||
| 164 | /** |
||
| 165 | * Updates the properties of a role draft. |
||
| 166 | * |
||
| 167 | * @since 6.0 |
||
| 168 | * |
||
| 169 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to update a role |
||
| 170 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if the identifier of the role already exists |
||
| 171 | * |
||
| 172 | * @param \eZ\Publish\API\Repository\Values\User\RoleDraft $roleDraft |
||
| 173 | * @param \eZ\Publish\API\Repository\Values\User\RoleUpdateStruct $roleUpdateStruct |
||
| 174 | * |
||
| 175 | * @return \eZ\Publish\API\Repository\Values\User\RoleDraft |
||
| 176 | */ |
||
| 177 | public function updateRoleDraft(RoleDraft $roleDraft, RoleUpdateStruct $roleUpdateStruct) |
||
| 190 | |||
| 191 | /** |
||
| 192 | * Adds a new policy to the role draft. |
||
| 193 | * |
||
| 194 | * @since 6.0 |
||
| 195 | * |
||
| 196 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to add a policy |
||
| 197 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if limitation of the same type is repeated in policy create |
||
| 198 | * struct or if limitation is not allowed on module/function |
||
| 199 | * @throws \eZ\Publish\API\Repository\Exceptions\LimitationValidationException if a limitation in the $policyCreateStruct is not valid |
||
| 200 | * |
||
| 201 | * @param \eZ\Publish\API\Repository\Values\User\RoleDraft $roleDraft |
||
| 202 | * @param \eZ\Publish\API\Repository\Values\User\PolicyCreateStruct $policyCreateStruct |
||
| 203 | * |
||
| 204 | * @return \eZ\Publish\API\Repository\Values\User\RoleDraft |
||
| 205 | */ |
||
| 206 | public function addPolicyByRoleDraft(RoleDraft $roleDraft, PolicyCreateStruct $policyCreateStruct) |
||
| 220 | |||
| 221 | /** |
||
| 222 | * Removes a policy from a role draft. |
||
| 223 | * |
||
| 224 | * @since 6.0 |
||
| 225 | * |
||
| 226 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to remove a policy |
||
| 227 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if policy does not belong to the given RoleDraft |
||
| 228 | * |
||
| 229 | * @param \eZ\Publish\API\Repository\Values\User\RoleDraft $roleDraft |
||
| 230 | * @param PolicyDraft $policyDraft the policy to remove from the role |
||
| 231 | * @return RoleDraft if the authenticated user is not allowed to remove a policy |
||
| 232 | */ |
||
| 233 | public function removePolicyByRoleDraft(RoleDraft $roleDraft, PolicyDraft $policyDraft) |
||
| 247 | |||
| 248 | /** |
||
| 249 | * Updates the limitations of a policy. The module and function cannot be changed and |
||
| 250 | * the limitations are replaced by the ones in $roleUpdateStruct. |
||
| 251 | * |
||
| 252 | * @since 6.0 |
||
| 253 | * |
||
| 254 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to update a policy |
||
| 255 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if limitation of the same type is repeated in policy update |
||
| 256 | * struct or if limitation is not allowed on module/function |
||
| 257 | * @throws \eZ\Publish\API\Repository\Exceptions\LimitationValidationException if a limitation in the $policyUpdateStruct is not valid |
||
| 258 | * |
||
| 259 | * @param \eZ\Publish\API\Repository\Values\User\RoleDraft $roleDraft |
||
| 260 | * @param \eZ\Publish\API\Repository\Values\User\PolicyDraft $policy |
||
| 261 | * @param \eZ\Publish\API\Repository\Values\User\PolicyUpdateStruct $policyUpdateStruct |
||
| 262 | * |
||
| 263 | * @return \eZ\Publish\API\Repository\Values\User\PolicyDraft |
||
| 264 | */ |
||
| 265 | View Code Duplication | public function updatePolicyByRoleDraft(RoleDraft $roleDraft, PolicyDraft $policy, PolicyUpdateStruct $policyUpdateStruct) |
|
| 278 | |||
| 279 | /** |
||
| 280 | * Deletes the given role draft. |
||
| 281 | * |
||
| 282 | * @since 6.0 |
||
| 283 | * |
||
| 284 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to delete this role |
||
| 285 | * |
||
| 286 | * @param \eZ\Publish\API\Repository\Values\User\RoleDraft $roleDraft |
||
| 287 | */ |
||
| 288 | public function deleteRoleDraft(RoleDraft $roleDraft) |
||
| 301 | |||
| 302 | /** |
||
| 303 | * Publishes a given Role draft. |
||
| 304 | * |
||
| 305 | * @since 6.0 |
||
| 306 | * |
||
| 307 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to publish this role |
||
| 308 | * |
||
| 309 | * @param \eZ\Publish\API\Repository\Values\User\RoleDraft $roleDraft |
||
| 310 | */ |
||
| 311 | public function publishRoleDraft(RoleDraft $roleDraft) |
||
| 324 | |||
| 325 | /** |
||
| 326 | * Updates the name of the role. |
||
| 327 | * |
||
| 328 | * @deprecated since 6.0, use {@see updateRoleDraft} |
||
| 329 | * |
||
| 330 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to update a role |
||
| 331 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if the name of the role already exists |
||
| 332 | * |
||
| 333 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 334 | * @param \eZ\Publish\API\Repository\Values\User\RoleUpdateStruct $roleUpdateStruct |
||
| 335 | * |
||
| 336 | * @return \eZ\Publish\API\Repository\Values\User\Role |
||
| 337 | */ |
||
| 338 | public function updateRole(Role $role, RoleUpdateStruct $roleUpdateStruct) |
||
| 351 | |||
| 352 | /** |
||
| 353 | * Adds a new policy to the role. |
||
| 354 | * |
||
| 355 | * @deprecated since 6.0, use {@see addPolicyByRoleDraft} |
||
| 356 | * |
||
| 357 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to add a policy |
||
| 358 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if limitation of the same type is repeated in policy create |
||
| 359 | * struct or if limitation is not allowed on module/function |
||
| 360 | * @throws \eZ\Publish\API\Repository\Exceptions\LimitationValidationException if a limitation in the $policyCreateStruct is not valid |
||
| 361 | * |
||
| 362 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 363 | * @param \eZ\Publish\API\Repository\Values\User\PolicyCreateStruct $policyCreateStruct |
||
| 364 | * |
||
| 365 | * @return \eZ\Publish\API\Repository\Values\User\Role |
||
| 366 | */ |
||
| 367 | public function addPolicy(Role $role, PolicyCreateStruct $policyCreateStruct) |
||
| 381 | |||
| 382 | /** |
||
| 383 | * Delete a policy. |
||
| 384 | * |
||
| 385 | * @deprecated since 6.0, use {@link removePolicyByRoleDraft()} instead. |
||
| 386 | * |
||
| 387 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to remove a policy |
||
| 388 | * |
||
| 389 | * @param \eZ\Publish\API\Repository\Values\User\Policy $policy the policy to delete |
||
| 390 | */ |
||
| 391 | public function deletePolicy(Policy $policy) |
||
| 405 | |||
| 406 | /** |
||
| 407 | * Updates the limitations of a policy. The module and function cannot be changed and |
||
| 408 | * the limitations are replaced by the ones in $roleUpdateStruct. |
||
| 409 | * |
||
| 410 | * @deprecated since 6.0, use {@link updatePolicyByRoleDraft()} instead. |
||
| 411 | * |
||
| 412 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to update a policy |
||
| 413 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if limitation of the same type is repeated in policy update |
||
| 414 | * struct or if limitation is not allowed on module/function |
||
| 415 | * @throws \eZ\Publish\API\Repository\Exceptions\LimitationValidationException if a limitation in the $policyUpdateStruct is not valid |
||
| 416 | * |
||
| 417 | * @param \eZ\Publish\API\Repository\Values\User\PolicyUpdateStruct $policyUpdateStruct |
||
| 418 | * @param \eZ\Publish\API\Repository\Values\User\Policy $policy |
||
| 419 | * |
||
| 420 | * @return \eZ\Publish\API\Repository\Values\User\Policy |
||
| 421 | */ |
||
| 422 | View Code Duplication | public function updatePolicy(Policy $policy, PolicyUpdateStruct $policyUpdateStruct) |
|
| 435 | |||
| 436 | /** |
||
| 437 | * Loads a role for the given id. |
||
| 438 | * |
||
| 439 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read this role |
||
| 440 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if a role with the given name was not found |
||
| 441 | * |
||
| 442 | * @param mixed $id |
||
| 443 | * |
||
| 444 | * @return \eZ\Publish\API\Repository\Values\User\Role |
||
| 445 | */ |
||
| 446 | public function loadRole($id) |
||
| 450 | |||
| 451 | /** |
||
| 452 | * Loads a role for the given identifier. |
||
| 453 | * |
||
| 454 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read this role |
||
| 455 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if a role with the given name was not found |
||
| 456 | * |
||
| 457 | * @param string $identifier |
||
| 458 | * |
||
| 459 | * @return \eZ\Publish\API\Repository\Values\User\Role |
||
| 460 | */ |
||
| 461 | public function loadRoleByIdentifier($identifier) |
||
| 465 | |||
| 466 | /** |
||
| 467 | * Loads all roles. |
||
| 468 | * |
||
| 469 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read the roles |
||
| 470 | * |
||
| 471 | * @return \eZ\Publish\API\Repository\Values\User\Role[] |
||
| 472 | */ |
||
| 473 | public function loadRoles() |
||
| 477 | |||
| 478 | /** |
||
| 479 | * Deletes the given role. |
||
| 480 | * |
||
| 481 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to delete this role |
||
| 482 | * |
||
| 483 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 484 | */ |
||
| 485 | public function deleteRole(Role $role) |
||
| 498 | |||
| 499 | /** |
||
| 500 | * Loads all policies from roles which are assigned to a user or to user groups to which the user belongs. |
||
| 501 | * |
||
| 502 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if a user with the given id was not found |
||
| 503 | * |
||
| 504 | * @param mixed $userId |
||
| 505 | * |
||
| 506 | * @return \eZ\Publish\API\Repository\Values\User\Policy[] |
||
| 507 | */ |
||
| 508 | public function loadPoliciesByUserId($userId) |
||
| 512 | |||
| 513 | /** |
||
| 514 | * Assigns a role to the given user group. |
||
| 515 | * |
||
| 516 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to assign a role |
||
| 517 | * @throws \eZ\Publish\API\Repository\Exceptions\LimitationValidationException if $roleLimitation is not valid |
||
| 518 | * |
||
| 519 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 520 | * @param \eZ\Publish\API\Repository\Values\User\UserGroup $userGroup |
||
| 521 | * @param \eZ\Publish\API\Repository\Values\User\Limitation\RoleLimitation $roleLimitation an optional role limitation (which is either a subtree limitation or section limitation) |
||
| 522 | */ |
||
| 523 | View Code Duplication | public function assignRoleToUserGroup(Role $role, UserGroup $userGroup, RoleLimitation $roleLimitation = null) |
|
| 538 | |||
| 539 | /** |
||
| 540 | * removes a role from the given user group. |
||
| 541 | * |
||
| 542 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to remove a role |
||
| 543 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException If the role is not assigned to the given user group |
||
| 544 | * |
||
| 545 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 546 | * @param \eZ\Publish\API\Repository\Values\User\UserGroup $userGroup |
||
| 547 | */ |
||
| 548 | public function unassignRoleFromUserGroup(Role $role, UserGroup $userGroup) |
||
| 562 | |||
| 563 | /** |
||
| 564 | * Assigns a role to the given user. |
||
| 565 | * |
||
| 566 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to assign a role |
||
| 567 | * @throws \eZ\Publish\API\Repository\Exceptions\LimitationValidationException if $roleLimitation is not valid |
||
| 568 | * |
||
| 569 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 570 | * @param \eZ\Publish\API\Repository\Values\User\User $user |
||
| 571 | * @param \eZ\Publish\API\Repository\Values\User\Limitation\RoleLimitation $roleLimitation an optional role limitation (which is either a subtree limitation or section limitation) |
||
| 572 | */ |
||
| 573 | View Code Duplication | public function assignRoleToUser(Role $role, User $user, RoleLimitation $roleLimitation = null) |
|
| 588 | |||
| 589 | /** |
||
| 590 | * removes a role from the given user. |
||
| 591 | * |
||
| 592 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to remove a role |
||
| 593 | * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException If the role is not assigned to the user |
||
| 594 | * |
||
| 595 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 596 | * @param \eZ\Publish\API\Repository\Values\User\User $user |
||
| 597 | */ |
||
| 598 | public function unassignRoleFromUser(Role $role, User $user) |
||
| 612 | |||
| 613 | /** |
||
| 614 | * Removes the given role assignment. |
||
| 615 | * |
||
| 616 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to remove a role assignment |
||
| 617 | * |
||
| 618 | * @param \eZ\Publish\API\Repository\Values\User\RoleAssignment $roleAssignment |
||
| 619 | */ |
||
| 620 | public function removeRoleAssignment(RoleAssignment $roleAssignment) |
||
| 631 | |||
| 632 | /** |
||
| 633 | * Loads a role assignment for the given id. |
||
| 634 | * |
||
| 635 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read this role |
||
| 636 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException If the role assignment was not found |
||
| 637 | * |
||
| 638 | * @param mixed $roleAssignmentId |
||
| 639 | * |
||
| 640 | * @return \eZ\Publish\API\Repository\Values\User\RoleAssignment |
||
| 641 | */ |
||
| 642 | public function loadRoleAssignment($roleAssignmentId) |
||
| 646 | |||
| 647 | /** |
||
| 648 | * Returns the assigned user and user groups to this role. |
||
| 649 | * |
||
| 650 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read a role |
||
| 651 | * |
||
| 652 | * @param \eZ\Publish\API\Repository\Values\User\Role $role |
||
| 653 | * |
||
| 654 | * @return \eZ\Publish\API\Repository\Values\User\RoleAssignment[] |
||
| 655 | */ |
||
| 656 | public function getRoleAssignments(Role $role) |
||
| 660 | |||
| 661 | /** |
||
| 662 | * @see \eZ\Publish\API\Repository\RoleService::getRoleAssignmentsForUser() |
||
| 663 | */ |
||
| 664 | public function getRoleAssignmentsForUser(User $user, $inherited = false) |
||
| 668 | |||
| 669 | /** |
||
| 670 | * Returns the roles assigned to the given user group. |
||
| 671 | * |
||
| 672 | * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException if the authenticated user is not allowed to read a user group |
||
| 673 | * |
||
| 674 | * @param \eZ\Publish\API\Repository\Values\User\UserGroup $userGroup |
||
| 675 | * |
||
| 676 | * @return \eZ\Publish\API\Repository\Values\User\UserGroupRoleAssignment[] |
||
| 677 | */ |
||
| 678 | public function getRoleAssignmentsForUserGroup(UserGroup $userGroup) |
||
| 682 | |||
| 683 | /** |
||
| 684 | * Instantiates a role create class. |
||
| 685 | * |
||
| 686 | * @param string $name |
||
| 687 | * |
||
| 688 | * @return \eZ\Publish\API\Repository\Values\User\RoleCreateStruct |
||
| 689 | */ |
||
| 690 | public function newRoleCreateStruct($name) |
||
| 694 | |||
| 695 | /** |
||
| 696 | * Instantiates a policy create class. |
||
| 697 | * |
||
| 698 | * @param string $module |
||
| 699 | * @param string $function |
||
| 700 | * |
||
| 701 | * @return \eZ\Publish\API\Repository\Values\User\PolicyCreateStruct |
||
| 702 | */ |
||
| 703 | public function newPolicyCreateStruct($module, $function) |
||
| 707 | |||
| 708 | /** |
||
| 709 | * Instantiates a policy update class. |
||
| 710 | * |
||
| 711 | * @return \eZ\Publish\API\Repository\Values\User\PolicyUpdateStruct |
||
| 712 | */ |
||
| 713 | public function newPolicyUpdateStruct() |
||
| 717 | |||
| 718 | /** |
||
| 719 | * Instantiates a policy update class. |
||
| 720 | * |
||
| 721 | * @return \eZ\Publish\API\Repository\Values\User\RoleUpdateStruct |
||
| 722 | */ |
||
| 723 | public function newRoleUpdateStruct() |
||
| 727 | |||
| 728 | /** |
||
| 729 | * Returns the LimitationType registered with the given identifier. |
||
| 730 | * |
||
| 731 | * @param string $identifier |
||
| 732 | * |
||
| 733 | * @return \eZ\Publish\SPI\Limitation\Type |
||
| 734 | * |
||
| 735 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if there is no LimitationType with $identifier |
||
| 736 | */ |
||
| 737 | public function getLimitationType($identifier) |
||
| 741 | |||
| 742 | /** |
||
| 743 | * Returns the LimitationType's assigned to a given module/function. |
||
| 744 | * |
||
| 745 | * Typically used for: |
||
| 746 | * - Internal validation limitation value use on Policies |
||
| 747 | * - Role admin gui for editing policy limitations incl list limitation options via valueSchema() |
||
| 748 | * |
||
| 749 | * @param string $module Legacy name of "controller", it's a unique identifier like "content" |
||
| 750 | * @param string $function Legacy name of a controller "action", it's a unique within the controller like "read" |
||
| 751 | * |
||
| 752 | * @return \eZ\Publish\SPI\Limitation\Type[] |
||
| 753 | * |
||
| 754 | * @throws \eZ\Publish\API\Repository\Exceptions\BadStateException If module/function to limitation type mapping |
||
| 755 | * refers to a non existing identifier. |
||
| 756 | */ |
||
| 757 | public function getLimitationTypesByModuleFunction($module, $function) |
||
| 761 | } |
||
| 762 |
Since your code implements the magic setter
_set, this function will be called for any write access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.Since the property has write access only, you can use the @property-write annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.