![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/friendsofphp/php-cs-fixer/src/Error/ |
<?php declare(strict_types=1); /* * This file is part of PHP CS Fixer. * * (c) Fabien Potencier <[email protected]> * Dariusz RumiĆski <[email protected]> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Error; /** * @internal */ final class SourceExceptionFactory { /** * @param array{class: class-string<\Throwable>, message: string, code: int, file: string, line: int} $error */ public static function fromArray(array $error): \Throwable { $exceptionClass = $error['class']; try { $exception = new $exceptionClass($error['message'], $error['code']); if ( $exception->getMessage() !== $error['message'] || $exception->getCode() !== $error['code'] ) { throw new \RuntimeException('Failed to create exception from array. Message and code are not the same.'); } } catch (\Throwable $e) { $exception = new \RuntimeException( \sprintf('[%s] %s', $exceptionClass, $error['message']), $error['code'] ); } try { $exceptionReflection = new \ReflectionClass($exception); foreach (['file', 'line'] as $property) { $propertyReflection = $exceptionReflection->getProperty($property); $propertyReflection->setAccessible(true); $propertyReflection->setValue($exception, $error[$property]); $propertyReflection->setAccessible(false); } } catch (\Throwable $reflectionException) { // Ignore if we were not able to set file/line properties. In most cases it should be fine, // we just need to make sure nothing is broken when we recreate errors from raw data passed from worker. } return $exception; } }