Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Apply a user supplied function to every member of an array
array_walk(array|object &$array, callable $callbackmixed $arg null): bool
    public function reset()

    {

        
array_walk($this->names, [$this'resetTag']);

    }
    public function flush()

    {

        
array_walk($this->names, [$this'flushTag']);

    }
        $this->fireAppCallbacks($this->bootingCallbacks);



        
array_walk($this->serviceProviders, function ($p) {

            
$this->bootProvider($p);

        });



        
$this->booted true;