Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Prepend one or more elements to the beginning of an array
<?php array_unshift(array &$array, mixed ...$values): int
<?php             foreach ($this->precompilers as $handler) {

                if (array_search($handler, $precompilers) === false) {

                    array_unshift($precompilers, $handler);



                    invade(app('blade.compiler'))->precompilers = $precompilers;
<?php     public function registerPropertySynthesizer($synth)

    {

        foreach ((array) $synth as $class) {

            array_unshift($this->propertySynthesizers, $class);

        }

    }