8000 [OptionsResolver] handle nested options by Doctrs · Pull Request #27251 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[OptionsResolver] handle nested options #27251

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

Closed
wants to merge 6 commits into from
Closed
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
Next Next commit
[OptionsResolver] handle nested options
  • Loading branch information
Doctrs committed May 20, 2018
commit c2d619e54fdbeb5ff15777c11d7afc009b3824e9
47 changes: 0 additions & 47 deletions .idea/php.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

4 changes: 4 additions & 0 deletions src/Symfony/Component/OptionsResolver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
=========

4.2.0
-----
* added `OptionResolverNested` and support for nesting options
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing blank line before


3.4.0
-----

Expand Down
16 changes: 16 additions & 0 deletions src/Symfony/Component/OptionsResolver/OptionResolverNested.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Symfony\Component\OptionsResolver;

class OptionResolverNested extends \ArrayObject
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should it be named NestedOption, any better idea? OptionResolverNested looks a bit strange to me

{
}
Loading
0