| 1 | <?php | ||
| 8 | class DynamicMutatorException extends Exception | ||
| 9 | { | ||
| 10 | /** | ||
| 11 | * DynamicMutatorException constructor. | ||
| 12 | * | ||
| 13 | * @param string $message | ||
| 14 | * @param int $code | ||
| 15 | * @param Throwable|null $previous | ||
| 16 | * @param array $dump | ||
| 17 | */ | ||
| 18 | public function __construct(string $message = '', int $code = 0, Throwable $previous = null, array $dump = []) | ||
| 23 | |||
| 24 | /** | ||
| 25 | * Convert dump array to string. | ||
| 26 | * | ||
| 27 | * @param array $dump | ||
| 28 | * | ||
| 29 | * @return string | ||
| 30 | */ | ||
| 31 | protected function dumpToString(array $dump): string | ||
| 41 | } | ||
| 42 |