Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Import variables into the current symbol table from an array
<?php extract(array &$array, int $flags = EXTR_OVERWRITE, string $prefix = ""): int
<?php     {

        $viewFile = __DIR__ . '/../../resources/views/errorPage.php';



        extract($data, EXTR_OVERWRITE);



        include $viewFile;

    }
<?php         }




        extract($this->getClassAndMethodFromExceptionMessage($throwable->getMessage()), EXTR_OVERWRITE);



        $possibleMethod = $this->findPossibleMethod($class ?? '', $method ?? '');
<?php             return '';

        }



        extract(


            $this->getClassAndPropertyFromExceptionMessage($throwable->getMessage()),

            EXTR_OVERWRITE,

        );



        $possibleProperty = $this->findPossibleProperty($class ?? '', $property ?? '');
<?php     protected function similarPropertyExists(Throwable $throwable): bool

    {


        extract($this->getClassAndPropertyFromExceptionMessage($throwable->getMessage()), EXTR_OVERWRITE);



        $possibleProperty = $this->findPossibleProperty($class ?? '', $property ?? '');