Debug
6 years ago
Exception
6 years ago
Tests
5 years ago
CHANGELOG.md
6 years ago
LICENSE
5 years ago
Options.php
7 years ago
OptionsResolver.php
5 years ago
README.md
7 years ago
composer.json
5 years ago
phpunit.xml.dist
7 years ago
Options.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | |
| 12 | namespace Symfony\Component\OptionsResolver; |
| 13 | |
| 14 | /** |
| 15 | * Contains resolved option values. |
| 16 | * |
| 17 | * @author Bernhard Schussek <bschussek@gmail.com> |
| 18 | * @author Tobias Schultze <http://tobion.de> |
| 19 | */ |
| 20 | interface Options extends \ArrayAccess, \Countable |
| 21 | { |
| 22 | } |
| 23 |