Actually, the nice thing about this, is that the Settings object could be subclassed, so we could have:
/**
* PathSettings class
*
* @property string $renders
* @property string $footage
*/
class PathSettings extends Settings
{
protected $renders;
protected $footage;
public function __construct()
{
parent::__construct('path');
}
}
$paths = new PathSettings();
$renders = $paths->renders;
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community