Skip to content

Commit abe7c6f

Browse files
committed
QA: Fix doc comments referring to AccessFailed instead of AccessingFailed
1 parent 6294b83 commit abe7c6f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/php/lang/reflection/Property.class.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public function constraint() {
4444
* @param ?object $instance
4545
* @return var
4646
* @throws lang.reflection.CannotAccess
47+
* @throws lang.reflection.AccessingFailed if getting raises an exception
4748
*/
4849
public function get(?object $instance) {
4950
try {
@@ -63,7 +64,7 @@ public function get(?object $instance) {
6364
* @param var $value
6465
* @return var The given value
6566
* @throws lang.reflection.CannotAccess
66-
* @throws lang.reflection.AccessFailed if setting raises an exception
67+
* @throws lang.reflection.AccessingFailed if setting raises an exception
6768
*/
6869
public function set(?object $instance, $value) {
6970
try {

0 commit comments

Comments
 (0)