Support the ongoing development of Laravel.io →
Configuration
Last updated 2 years ago.
0

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;
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.