1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 
<?php

/**
 * Simple Machines Forum (SMF)
 *
 * @package SMF
 * @author Simple Machines http://www.simplemachines.org
 * @copyright 2019 Simple Machines and individual contributors
 * @license http://www.simplemachines.org/about/smf/license.php BSD
 *
 * @version 2.1 RC1
 */

if (!defined('SMF'))
    die('No direct access...');

/**
 * Standard non full index, non custom index search
 */
class standard_search extends search_api
{
    /**
     * {@inheritDoc}
     */
    public function supportsMethod($methodName, $query_params = null)
    {
        $return = false;

        // Maybe parent got support
        if (!$return)
            $return = parent::supportsMethod($methodName, $query_params);

        return $return;
    }
}

?>