| 1 | <?php | ||
| 23 | 	final class Jetpack_After_The_Deadline { | ||
| 24 | |||
| 25 | /** | ||
| 26 | * The single instance of the class | ||
| 27 | * | ||
| 28 | * @var object | ||
| 29 | * @since 3.0.0 | ||
| 30 | */ | ||
| 31 | protected static $_instance = null; | ||
| 32 | |||
| 33 | /** | ||
| 34 | * Return the single class instance | ||
| 35 | * | ||
| 36 | * @return object | ||
| 37 | * @since 3.0.0 | ||
| 38 | */ | ||
| 39 | 		public static function instance() { | ||
| 45 | |||
| 46 | /** | ||
| 47 | * Class constructor | ||
| 48 | * | ||
| 49 | * @uses is_admin() | ||
| 50 | * @uses add_action() | ||
| 51 | * | ||
| 52 | * @since 3.0.0 | ||
| 53 | */ | ||
| 54 | 		protected function __construct() { | ||
| 59 | |||
| 60 | /** | ||
| 61 | * Prevent the class from being cloned | ||
| 62 | * | ||
| 63 | * @return void | ||
| 64 | * @since 3.0.0 | ||
| 65 | */ | ||
| 66 | 		protected function __clone() { | ||
| 69 | /** | ||
| 70 | * Load Jetpack After the deadline scripts | ||
| 71 | * | ||
| 72 | * @uses add_filter() | ||
| 73 | * | ||
| 74 | * @return void | ||
| 75 | * @since 3.0.0 | ||
| 76 | */ | ||
| 77 | 		public function load() { | ||
| 80 | |||
| 81 | } // END class | ||
| 82 | |||
| 84 |