Ticket #3294: trac-3294-phpcs-fix-property-modifiers.patch
File trac-3294-phpcs-fix-property-modifiers.patch, 829 bytes (added by , 5 years ago) |
---|
-
src/includes/common/classes.php
30 30 * @var string Unique name (for internal identification) 31 31 * @internal 32 32 */ 33 var$name;33 public $name; 34 34 35 35 /** 36 36 * @var Unique ID (normally for custom post type) 37 37 */ 38 var$id;38 public $id; 39 39 40 40 /** 41 41 * @var string Unique slug (used in query string and permalinks) 42 42 */ 43 var$slug;43 public $slug; 44 44 45 45 /** 46 46 * @var WP_Query The loop for this component 47 47 */ 48 var$query;48 public $query; 49 49 50 50 /** 51 51 * @var string The current ID of the queried object 52 52 */ 53 var$current_id;53 public $current_id; 54 54 55 55 56 56 /** Methods ***************************************************************/