Merge pull request #1191 from alexsomeoddpilot/unused-parameters

Unused parameters and declared properties
This commit is contained in:
Ben Word
2014-11-14 17:48:26 -06:00
6 changed files with 14 additions and 7 deletions

View File

@@ -15,7 +15,13 @@ function roots_sidebar_path() {
class Roots_Wrapping {
// Stores the full path to the main template file
static $main_template;
public static $main_template;
// basename of template file
public $slug;
// array of templates
public $templates;
// Stores the base name of the template file; e.g. 'page' for 'page.php' etc.
static $base;