Changeset 56544
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-text-diff-renderer-table.php
r56354 r56544 522 522 } 523 523 524 trigger_error( 524 wp_trigger_error( 525 __METHOD__, 525 526 "The property `{$name}` is not declared. Getting a dynamic property is " . 526 527 'deprecated since version 6.4.0! Instead, declare the property on the class.', … … 545 546 } 546 547 547 trigger_error( 548 wp_trigger_error( 549 __METHOD__, 548 550 "The property `{$name}` is not declared. Setting a dynamic property is " . 549 551 'deprecated since version 6.4.0! Instead, declare the property on the class.', … … 566 568 } 567 569 568 trigger_error( 570 wp_trigger_error( 571 __METHOD__, 569 572 "The property `{$name}` is not declared. Checking `isset()` on a dynamic property " . 570 573 'is deprecated since version 6.4.0! Instead, declare the property on the class.', … … 588 591 } 589 592 590 trigger_error( 593 wp_trigger_error( 594 __METHOD__, 591 595 "A property `{$name}` is not declared. Unsetting a dynamic property is " . 592 596 'deprecated since version 6.4.0! Instead, declare the property on the class.', -
trunk/tests/phpunit/tests/diff/wpTextDiffRendererTable.php
r56354 r56544 44 44 $this->expectDeprecation(); 45 45 $this->expectDeprecationMessage( 46 'WP_Text_Diff_Renderer_Table::__get(): ' . 46 47 'The property `undeclared_property` is not declared. Getting a dynamic property is ' . 47 48 'deprecated since version 6.4.0! Instead, declare the property on the class.' … … 73 74 $this->expectDeprecation(); 74 75 $this->expectDeprecationMessage( 76 'WP_Text_Diff_Renderer_Table::__set(): ' . 75 77 'The property `undeclared_property` is not declared. Setting a dynamic property is ' . 76 78 'deprecated since version 6.4.0! Instead, declare the property on the class.' … … 105 107 $this->expectDeprecation(); 106 108 $this->expectDeprecationMessage( 109 'WP_Text_Diff_Renderer_Table::__isset(): ' . 107 110 'The property `undeclared_property` is not declared. Checking `isset()` on a dynamic property ' . 108 111 'is deprecated since version 6.4.0! Instead, declare the property on the class.' … … 132 135 $this->expectDeprecation(); 133 136 $this->expectDeprecationMessage( 137 'WP_Text_Diff_Renderer_Table::__unset(): ' . 134 138 'A property `undeclared_property` is not declared. Unsetting a dynamic property is ' . 135 139 'deprecated since version 6.4.0! Instead, declare the property on the class.'
Note: See TracChangeset
for help on using the changeset viewer.