Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  *
  * @deprecated Deprecated since version 2.4, to be removed in 3.0.
  */
 public function getIndicesForChoices(array $choices)
 {
     if (!$this->choiceList) {
         $this->load();
     }
     return $this->choiceList->getIndicesForChoices($choices);
 }
Ejemplo n.º 2
0
 /**
  * {@inheritdoc}
  *
  * @deprecated since version 2.4, to be removed in 3.0.
  */
 public function getIndicesForChoices(array $choices)
 {
     trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.4 and will be removed in 3.0.', E_USER_DEPRECATED);
     if (!$this->choiceList) {
         $this->load();
     }
     return $this->choiceList->getIndicesForChoices($choices);
 }
Ejemplo n.º 3
0
 public function testGetIndicesForChoicesEmpty()
 {
     $this->assertSame(array(), $this->list->getIndicesForChoices(array()));
 }
 public function testLegacyGetIndicesForChoicesEmpty()
 {
     $this->iniSet('error_reporting', -1 & ~E_USER_DEPRECATED);
     $this->assertSame(array(), $this->list->getIndicesForChoices(array()));
 }