本文整理汇总了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());
}