PHP 클래스 pchIssue, php-commit-hooks

파일 보기 프로젝트 열기: kore/php-commit-hooks

공개 프로퍼티들

프로퍼티 타입 설명
$file string File, which the message has been generated for
$line string Line, or line range, which the message has been generated for
$message string Actual message, describing the occured issue.
$type integer Importance level of issue, should be one of: - E_STRICT - E_NOTICE - E_WARNING - E_ERROR

공개 메소드들

메소드 설명
__construct ( integer $type, string $file, string $line, string $message ) : void Construct issue from issue properties.

메소드 상세

__construct() 공개 메소드

Construct issue from issue properties.
public __construct ( integer $type, string $file, string $line, string $message ) : void
$type integer
$file string
$line string
$message string
리턴 void

프로퍼티 상세

$file 공개적으로 프로퍼티

File, which the message has been generated for
public string $file
리턴 string

$line 공개적으로 프로퍼티

Line, or line range, which the message has been generated for
public string $line
리턴 string

$message 공개적으로 프로퍼티

Actual message, describing the occured issue.
public string $message
리턴 string

$type 공개적으로 프로퍼티

Importance level of issue, should be one of: - E_STRICT - E_NOTICE - E_WARNING - E_ERROR
public int $type
리턴 integer