Changeset 5841 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/readme/class-parser.php
- Timestamp:
- 08/25/2017 08:17:03 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/readme/class-parser.php
r5565 r5841 31 31 */ 32 32 public $tested = ''; 33 34 /** 35 * @var string 36 */ 37 public $requires_php = ''; 33 38 34 39 /** … … 118 123 'requires' => 'requires', 119 124 'requires at least' => 'requires', 125 'requires php' => 'requires_php', 120 126 'tags' => 'tags', 121 127 'contributors' => 'contributors', … … 227 233 if ( ! empty( $headers['tested'] ) ) { 228 234 $this->tested = $headers['tested']; 235 } 236 if ( ! empty( $headers['requires_php'] ) ) { 237 $this->requires_php = $headers['requires_php']; 229 238 } 230 239 if ( ! empty( $headers['contributors'] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.