Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Merge one or more arrays
<?php array_merge(array ...$arrays): array
<?php         ];



        foreach ($this->lexers as $lexer) {

            $registry = array_merge($registry, $lexer->analyze($tokens));

        }



        return new Tree($registry);
<?php         $generated = $blueprint->generate($registry, $only, $skip, $overwriteMigrations);



        $models = array_merge($tokens['cache'], $tokens['models'] ?? []);



        $filesystem->put(

            '.blueprint',
<?php                 unset($definition['resource']);



                $definition = array_merge($resource_definition, $definition);

            }



            if (isset($definition['invokable'])) {
<?php                 continue;

            }



            $classes = array_merge($classes, $this->filesystem->allFiles($path));

        }



        return array_filter(array_map(function (\SplFIleInfo $file) {
<?php         if ($column->dataType() === 'id' && ($column->attributes() || Str::endsWith($column->name(), '_id'))) {

            $reference = $column->attributes()[0] ?? Str::beforeLast($column->name(), '_id');

            $rules = array_merge($rules, ['integer', 'exists:' . Str::plural($reference) . ',id']);

        }



        if (in_array($column->dataType(), self::INTEGER_TYPES)) {
<?php     private function registerModels()

    {

        $this->models = array_merge($this->tree['cache'] ?? [], $this->tree['models'] ?? []);

    }



    public function controllers()