1<?php 2 3namespace ComboStrap; 4 5class ExceptionPhpError extends ExceptionCompile 6{ 7 8 9 private string $errorFile; 10 private int $errorLine; 11 12 public function setErrorFile($errorFile): ExceptionPhpError 13 { 14 $this->errorFile = $errorFile; 15 return $this; 16 } 17 18 public function setErrorLine($errorLine): ExceptionPhpError 19 { 20 $this->errorLine = $errorLine; 21 return $this; 22 } 23 24 /** 25 * @return string 26 */ 27 public function getErrorFile(): string 28 { 29 return $this->errorFile; 30 } 31 32 /** 33 * @return int 34 */ 35 public function getErrorLine(): int 36 { 37 return $this->errorLine; 38 } 39} 40