コード例 #1
0
ファイル: SelectType.php プロジェクト: andyvenus/form
 public function allowUnsetRequest($field)
 {
     if (empty($field['options']['choices'])) {
         return true;
     }
     return parent::allowUnsetRequest($field);
 }
コード例 #2
0
ファイル: DefaultTypeTest.php プロジェクト: andyvenus/form
 /**
  * @dataProvider providerAllowUnsetRequest
  */
 public function testAllowUnsetRequest($field, $allowed_unset)
 {
     $this->assertEquals($allowed_unset, $this->default_type->allowUnsetRequest($field));
 }