Skip to content

Instantly share code, notes, and snippets.

@alxfv
Created June 16, 2014 11:32
Show Gist options
  • Save alxfv/6a6ddc54abc768e00253 to your computer and use it in GitHub Desktop.
Save alxfv/6a6ddc54abc768e00253 to your computer and use it in GitHub Desktop.
setDefaultOptions
<?php
/**
* {@inheritdoc}
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'type' => 'new',
));
$resolver->setAllowedValues(array(
'type' => array(
'new',
'edit',
),
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment