namespace IlluminateTranslation;
interface LoaderInterface
{// a trait like loader
public function load($locale, $group, $namespace = null);//
// to load the messages for the given locale.
public function addNamespace($namespace, $hint);
//addNamespace add a new namespace to the loader.
}



