GeForce Manager
PHP Advanced
C:
/
xampp
/
htdocs
/
Ajaji
/
libraries
/
vendor
/
symfony
/
options-resolver
/
Name
Size
Perms
Actions
📁
Debug
0 B
0777
Permissions
Delete
📁
Exception
5270 B
0777
Permissions
Delete
📄
LICENSE
1068 B
0666
Edit
Perms
Delete
📄
Options.php
483 B
0666
Edit
Perms
Delete
Editing:
Options.php
<?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; /** * Contains resolved option values. * * @author Bernhard Schussek <bschussek@gmail.com> * @author Tobias Schultze <http://tobion.de> */ interface Options extends \ArrayAccess, \Countable { }
Cancel