8000 [Form] Remove deprecated setDefaultOptions and OptionsResolverInterface by peterrehm · Pull Request #13407 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form] Remove deprecated setDefaultOptions and OptionsResolverInterface #13407

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 5, 2015
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove the deprecated OptionsResolverInterface
  • Loading branch information
peterrehm committed Jan 20, 2015
commit 9b9158b4da5fd7d6a857e8abbd2a5b938cdf106f
4 changes: 2 additions & 2 deletions src/Symfony/Component/Form/ResolvedFormTypeInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Symfony\Component\Form;

use Symfony\Component\OptionsResolver\OptionsResolverInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;

/**
* A wrapper for a form type and its extensions.
Expand Down Expand Up @@ -102,7 +102,7 @@ public function finishView(FormView $view, FormInterface $form, array $options);
/**
* Returns the configured options resolver used for this type.
*
* @return OptionsResolverInterface The options resolver.
* @return OptionsResolver The options resolver.
*/
public function getOptionsResolver();
}
2 changes: 1 addition & 1 deletion src/Symfony/Component/OptionsResolver/OptionsResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Bernhard Schussek <bschussek@gmail.com>
* @author Tobias Schultze <http://tobion.de>
*/
class OptionsResolver implements Options, OptionsResolverInterface
class OptionsResolver implements Options
{
/**
* The fully qualified name of the {@link Options} interface.
Expand Down
214 changes: 0 additions & 214 deletions src/Symfony/Component/OptionsResolver/OptionsResolverInterface.php

This file was deleted.

0