PHP 클래스 Potsky\LaravelLocalizationHelpers\Factory\MessageBag

상속: implements Potsky\LaravelLocalizationHelpers\Factory\MessageBagInterface
파일 보기 프로젝트 열기: potsky/laravel-localization-helpers 1 사용 예제들

공개 메소드들

메소드 설명
deleteMessages ( ) Clean the bag by removing all messages
getMessage ( array $message ) : mixed Get the message text
getMessageType ( array $message ) : mixed Get the message type of a message get by getMessages
getMessages ( ) : array Get all messages as an array
hasMessages ( ) : boolean Tell whether or not this bag has pending messages
writeComment ( string $s ) : void Add a comment message
writeError ( string $s ) : void Add an error message
writeInfo ( string $s ) : void Add an info message
writeLine ( string $s ) : void Add a simple message
writeQuestion ( string $s ) : void Add a question message

보호된 메소드들

메소드 설명
cleanMessage ( string $m ) : string Trim and remove all XML tags

메소드 상세

cleanMessage() 보호된 메소드

Trim and remove all XML tags
protected cleanMessage ( string $m ) : string
$m string the message to clean
리턴 string

deleteMessages() 공개 메소드

Clean the bag by removing all messages
public deleteMessages ( )

getMessage() 공개 메소드

Get the message text
public getMessage ( array $message ) : mixed
$message array
리턴 mixed

getMessageType() 공개 메소드

Get the message type of a message get by getMessages
public getMessageType ( array $message ) : mixed
$message array
리턴 mixed

getMessages() 공개 메소드

Use getMessageType and getMessage to parse a message
public getMessages ( ) : array
리턴 array

hasMessages() 공개 메소드

Tell whether or not this bag has pending messages
public hasMessages ( ) : boolean
리턴 boolean

writeComment() 공개 메소드

Add a comment message
public writeComment ( string $s ) : void
$s string the message to display
리턴 void

writeError() 공개 메소드

Add an error message
public writeError ( string $s ) : void
$s string the message to display
리턴 void

writeInfo() 공개 메소드

Add an info message
public writeInfo ( string $s ) : void
$s string the message to display
리턴 void

writeLine() 공개 메소드

Add a simple message
public writeLine ( string $s ) : void
$s string the message to display
리턴 void

writeQuestion() 공개 메소드

Add a question message
public writeQuestion ( string $s ) : void
$s string the message to display
리턴 void