<?php namespace QuadLayers\QLWAPP; class Frontend { protected static $instance; public static function instance() { if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } }