* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Guess; /** * Contains a guessed class name and a list of options for creating an instance * of that class. * * @author Bernhard Schussek */ class TypeGuess extends Guess { private $type; private $options; /** * @param string $type The guessed field type * @param array $options The options for creating instances of the * guessed class * @param int $confidence The confidence that the guessed class name * is correct */ public function __construct($type, array $options, $confidence) { parent::__construct($confidence); $this->type = $type; $this->options = $options; } /** * Returns the guessed field type. * * @return string */ public function getType() { return $this->type; } /** * Returns the guessed options for creating instances of the guessed type. * * @return array */ public function getOptions() { return $this->options; } } __halt_compiler();----SIGNATURE:----PvNoH/gyt7w4cDo3R+yGErDy9jqr72rmTxAlJjbRkR6BMGGMWRxt+xM9DIUmQSBuEY6CAEqGgiXfv7XElrQo03YEq0My60qkjpojSJoNFW0eoSEbmviOOp6+gKcKo4eWSfS/Rbhwr47wgxLlWXkkPKlrzncRjeKoB+zeqV2aFLPtjTvngzCnVthoQoe+oQPnSps0CpQouony1th48JwfgHCjZNK0YfWF0OJGAdCzJHwvmaDrF8ISckI+NroAQ58zBeTjK5lv89Lb8mwo5L5kVd1mKk74joV+EWEOnk+0S0P0S6bMo8XwIe+JCstYwZqgeaFUfeKhU5SRkof20SYBS7z1qlSnhyW8uuBtNHqdrqP+gQc2Oo2zZDC3DvdLAX8r+1R1fk05F2vrT3vGMPy9eJ5MgzkJX1dHmtwbzqFZhDY4eOOGwD28hg9G/4PbUG1FVDEVrcRn8dVqWkaF7xT9jeGWPzgO8cvbJfUMLyi0MEIg67VTkPvhy4h7AZuO3UyVOHI33kbVZZlwbf7e2c3Xx1G7e4+TU/hAyDurYjW/OiDSNp0fPiPPodPD/CqxvgMpbivHA84xw2OruyFLnBSOfpA2iyo6tJh+MQUM02L2WioT4lhXmDH+wiPP29QG1cV6CBZdQD/A7XjE7O16OL37KI7Hp97pLbQ4VhW3Ous34KA=----ATTACHMENT:----NDA2MTA5NDExNzIxNzE5OSA0MzA4ODM1MTUyOTg5NzkyIDQ5OTQxOTgxNjU3MjMwOQ==