FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
wp-whatsapp-chat
/
compatibility
Edit File: class-contact.php
<?php namespace QuadLayers\QLWAPP\Models; class Contact { protected static $instance; public function get_contacts_reorder() { return array(); } public static function instance() { if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } }
Save
Back