Netson\L4gettext\L4gettextServiceProvider::boot PHP Метод

boot() публичный Метод

Bootstrap the application events.
public boot ( ) : void
Результат void
    public function boot()
    {
        $this->package('netson/l4gettext');
        // include custom exceptions
        include_once __DIR__ . '/Exceptions.php';
        // include routes
        include_once __DIR__ . '/../../routes.php';
        // include functions
        include_once __DIR__ . '/Functions.php';
        // make sure the class is initialized
        $gt = new L4gettext();
    }