Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
wpide
/
vendor
/
rakit
/
validation
/
src
/
Rules
:
RequiredWith.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Rakit\Validation\Rules; use Rakit\Validation\Rule; class RequiredWith extends Required { /** @var bool */ protected $implicit = true; /** @var string */ protected $message = "The :attribute is required"; /** * Given $params and assign $this->params * * @param array $params * @return self */ public function fillParameters(array $params): Rule { $this->params['fields'] = $params; return $this; } /** * Check the $value is valid * * @param mixed $value * @return bool */ public function check($value): bool { $this->requireParameters(['fields']); $fields = $this->parameter('fields'); $validator = $this->validation->getValidator(); $requiredValidator = $validator('required'); foreach ($fields as $field) { if ($this->validation->hasValue($field)) { $this->setAttributeAsRequired(); return $requiredValidator->check($value, []); } } return true; } }