當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Validator::setPresenceVerifier方法代碼示例

本文整理匯總了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;
 }
開發者ID:laravel-commode,項目名稱:validation-locator,代碼行數:18,代碼來源:Validator.php

示例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());
 }
開發者ID:j-ew-s,項目名稱:BabyName,代碼行數:19,代碼來源:ValidatorTest.php


注:本文中的Illuminate\Validation\Validator::setPresenceVerifier方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。