本文整理匯總了PHP中Illuminate\Validation\Validator::setPresenceVerifier方法的典型用法代碼示例。如果您正苦於以下問題:PHP Validator::setPresenceVerifier方法的具體用法?PHP Validator::setPresenceVerifier怎麽用?PHP Validator::setPresenceVerifier使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Illuminate\Validation\Validator
的用法示例。
在下文中一共展示了Validator::setPresenceVerifier方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setModel
/**
* Sets current model.
*
* Appends validator data model, runs sometimes closures.
*
* @param array $data Data model to be validated.
* @param bool $isNew Flag that shows of model is new or being updated.
*
* @return $this
*/
public function setModel(array $data = [], $isNew = true)
{
$this->data = $data;
$this->validator = new \Illuminate\Validation\Validator($this->translator, $this->data, $this->getRules($isNew), $this->getMessages());
$this->validator->setPresenceVerifier($this->presenceVerifier);
$this->sometimes($this->validator, $isNew);
return $this;
}
示例2: testValidationExists
public function testValidationExists()
{
$trans = $this->getRealTranslator();
$v = new Validator($trans, array('email' => 'foo'), array('email' => 'Exists:users'));
$mock = m::mock('Illuminate\\Validation\\PresenceVerifierInterface');
$mock->shouldReceive('getCount')->once()->with('users', 'email', 'foo')->andReturn(true);
$v->setPresenceVerifier($mock);
$this->assertTrue($v->passes());
$v = new Validator($trans, array('email' => 'foo'), array('email' => 'Exists:users,email_addr'));
$mock2 = m::mock('Illuminate\\Validation\\PresenceVerifierInterface');
$mock2->shouldReceive('getCount')->once()->with('users', 'email_addr', 'foo')->andReturn(false);
$v->setPresenceVerifier($mock2);
$this->assertFalse($v->passes());
$v = new Validator($trans, array('email' => array('foo')), array('email' => 'Exists:users,email_addr'));
$mock3 = m::mock('Illuminate\\Validation\\PresenceVerifierInterface');
$mock3->shouldReceive('getMultiCount')->once()->with('users', 'email_addr', array('foo'))->andReturn(false);
$v->setPresenceVerifier($mock3);
$this->assertFalse($v->passes());
}