Jamm\Autoload\Autoloader::log_search_variant PHP Method

log_search_variant() protected method

Add next variant of filepath from searching method to the log
protected log_search_variant ( string $method_title, string $class_name, string $filepath = '' )
$method_title string
$class_name string
$filepath string
    protected function log_search_variant($method_title, $class_name, $filepath = '')
    {
        $str = $method_title . ': ' . $class_name;
        if (!empty($filepath)) {
            $str .= ' = > ' . $filepath;
        }
        $this->search_log[] = $str;
    }