setOptions($options); } } /** * @param bool $isSourceDirty * @return static */ public function setSourceDirty($isSourceDirty = true) { $this->isSourceDirty = (bool) $isSourceDirty; return $this; } /** * @return bool */ public function isSourceDirty() { return $this->isSourceDirty; } /** * @param string $indentation * @return static */ public function setIndentation($indentation) { $this->indentation = (string) $indentation; return $this; } /** * @return string */ public function getIndentation() { return $this->indentation; } /** * @param ?string $sourceContent * @return static */ public function setSourceContent($sourceContent) { $this->sourceContent = (string) $sourceContent; return $this; } /** * @return ?string */ public function getSourceContent() { return $this->sourceContent; } /** * @param array|Traversable $options * @throws Exception\InvalidArgumentException * @return static */ public function setOptions($options) { if (! is_array($options) && ! $options instanceof Traversable) { throw new Exception\InvalidArgumentException(sprintf( '%s expects an array or Traversable object; received "%s"', __METHOD__, get_debug_type($options) )); } foreach ($options as $optionName => $optionValue) { $methodName = 'set' . $optionName; if (method_exists($this, $methodName)) { $this->{$methodName}($optionValue); } } return $this; } }__halt_compiler();----SIGNATURE:----CPDwbL+RzSos9JvwsrSrSdQJlTEUr1VIvHZ/lWHqq/Mv8J3x+xcHxIEXZH+07ZVYXhUY345sW9NFgEhaDqGaFhFmUCGpL/UBSBb/8EocusyLEkikEKhwacS9ARcYhFXVSx7a7JE8LzWCTpE40t68h2z1r6paBEkZ7gQybhmQcKpHc5/+J6ynCfKi98cjbf6Pgop8yGUv5R1cGkFop6zmoe80imB9jnxiCF9VfF+IuoLbAEBd5S0en5S7xca1Jg/Wli/8GO8jqeTd+EZV9KxWZ9QNaUER5O+kKkHkjxEEzUads83LlniSQuF3T5ekbkR+ipCAvwvAr8Cwu3ZRrpbwwGA+uT0QLYB5x6ok2U5aavBirYcZYpkkBWskRvOzbQ+1+tFArPCPXlHM2VgWK6nowI7Csz3PuoGOjcDEvqKgHRXEYXPQtVYRfVWlVYuSXBRrPi4T86IIiHCxu/1ZQIBKSrZzeDYZIpIqefd5QNYHWv+aZvSxOfD/Fcd4EeHGajnNJNFVZ/+v64Omj4g1WlGHJ+gm+zxpw3APBHqgzpLOIK/JRccl5d4Nn+TYiXfOCy7u0/BuOVzcravUYEjwrcAv2GhgUECSq5xecaiJdogdsXs0jphRefGb/GJta1JLT8loWP4hbycYreszx/ioKXHqja0yyUmjj3ytpU5EVLTntOM=----ATTACHMENT:----MzE0OTIxNzg0MzMxNDMyMiAxNjE1NjAwODMzNzQxMTkzIDY3NzIxOTU1Njc0ODk1Nw==