Changeset 61424 for trunk/tests/phpunit/tests/shortcode.php
- Timestamp:
- 01/03/2026 06:15:57 AM (3 months ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/tests/shortcode.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/shortcode.php
r60251 r61424 49 49 // [footag foo="bar"] 50 50 public function shortcode_footag( $atts ) { 51 $foo = isset( $atts['foo'] ) ? $atts['foo'] :'';51 $foo = $atts['foo'] ?? ''; 52 52 return "foo = $foo"; 53 53 }
Note: See TracChangeset
for help on using the changeset viewer.