vendor/symfony/form/ChoiceList/Loader/IntlCallbackChoiceLoader.php line 20

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Form\ChoiceList\Loader;
  11. /**
  12.  * Callback choice loader optimized for Intl choice types.
  13.  *
  14.  * @author Jules Pietri <jules@heahprod.com>
  15.  * @author Yonel Ceruto <yonelceruto@gmail.com>
  16.  */
  17. class IntlCallbackChoiceLoader extends CallbackChoiceLoader
  18. {
  19.     /**
  20.      * {@inheritdoc}
  21.      */
  22.     public function loadChoicesForValues(array $values$value null)
  23.     {
  24.         // Optimize
  25.         $values array_filter($values);
  26.         if (empty($values)) {
  27.             return [];
  28.         }
  29.         return $this->loadChoiceList($value)->getChoicesForValues($values);
  30.     }
  31.     /**
  32.      * {@inheritdoc}
  33.      */
  34.     public function loadValuesForChoices(array $choices$value null)
  35.     {
  36.         // Optimize
  37.         $choices array_filter($choices);
  38.         if (empty($choices)) {
  39.             return [];
  40.         }
  41.         // If no callable is set, choices are the same as values
  42.         if (null === $value) {
  43.             return $choices;
  44.         }
  45.         return $this->loadChoiceList($value)->getValuesForChoices($choices);
  46.     }
  47. }