foreach ($array['classes'] as $class)So nothing fancy. It converts the defined class to ucfirst(), then attempts to load it.
{
if ( ! class_exists($class = ucfirst($class)))
{
throw new \FuelException('Always load class does not exist. Unable to load: '.$class);
}
}
It looks like you're new here. If you want to get involved, click one of these buttons!