Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Merge one or more arrays
<?php array_merge(array ...$arrays): array
<?php         $this->newExceptions = \array_change_key_case($this->newExceptions, \CASE_LOWER);




        $this->newClasses = \array_merge($this->newClasses, $this->newExceptions);



        return [

            \T_NEW,
<?php         $this->removedExceptions = \array_change_key_case($this->removedExceptions, \CASE_LOWER);




        $this->removedClasses = \array_merge($this->removedClasses, $this->removedExceptions);



        return [

            \T_NEW,
<?php     public function register()

    {


        $this->allForbiddenNames = \array_merge($this->forbiddenNames, $this->softReservedNames);



        $targets = [

            \T_CLASS,
<?php     {

        $file  = $this->sniffFile(__FILE__, $introducedIn);

        $error = "'{$keyword}' is a reserved keyword introduced in PHP version {$introducedIn} and cannot be invoked as a function";

        $lines = \array_merge($linesFunction, $linesMethod);

        foreach ($lines as $line) {

            $this->assertError($file, $line, $error);

        }