| @@ -1,8 +1,5 @@ | ||
| 1 | 1 | <?php |
| 2 | -/** | |
| 3 | - * @package Polylang | |
| 4 | - */ | |
| 5 | 2 | |
| 6 | 3 | /** |
| 7 | 4 | * It is best practice that plugins do nothing before plugins_loaded is fired |
| 8 | 5 | * so it is what Polylang intends to do |
| @@ -12,9 +9,9 @@ | ||
| 12 | 9 | * |
| 13 | 10 | * @since 1.2 |
| 14 | 11 | */ |
| 15 | 12 | class PLL_OLT_Manager { |
| 16 | - protected static $instance; // For singleton | |
| 13 | + static protected $instance; // For singleton | |
| 17 | 14 | protected $default_locale; |
| 18 | 15 | protected $list_textdomains = array(); // All text domains |
| 19 | 16 | public $labels = array(); // Post types and taxonomies labels to translate |
| 20 | 17 | |