This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/PropertyAccess
Fabien Potencier 5c0b5ea821 Merge branch '2.7'
* 2.7: (61 commits)
  fixxed order of usage
  [2.7] [Form] Replaced calls to array_search() by in_array() where is no need to get the index
  removed the last deprecation notice
  [Serializer] Silent deprecation notice
  removed deprecation notice
  [PropertyAccess] Show property path in all exception messages
  added deprecation notice for HttpCache::createEsi()
  added missing deprecation notice when using the form_enctype function
  [Process] Make test AbstractProcessTest::testStartAfterATimeout useful again
  removed non-sense example
  Fixes small typo.
  [Validator] Remove unnecessary include in tests
  [HttpFoundation] minor: clarify Request::getUrlencodedPrefix() regex
  fixed typo
  [Serializer] Use Serializer's LogicException when applicable
  [Serializer] Use autoloader for annotations in tests
  [Validator] fix DOS-style line endings
  Drop useless execution bit
  bumped Symfony version to 2.6.5
  [Serializer] update changelog
  ...

Conflicts:
	CHANGELOG-2.3.md
	CHANGELOG-2.5.md
	CHANGELOG-2.6.md
	src/Symfony/Bridge/Twig/Node/FormEnctypeNode.php
	src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php
	src/Symfony/Component/HttpFoundation/Session/Storage/Handler/NativeSessionHandler.php
2015-02-05 07:59:50 +01:00
..
Exception [PropertyAccess] Show property path in all exception messages 2015-02-04 17:34:04 +01:00
Tests [PropertyAccess] Show property path in all exception messages 2015-02-04 17:34:04 +01:00
.gitignore Added missing files .gitignore 2013-07-21 14:12:18 +02:00
CHANGELOG.md [PropertyAccess] Show property path in all exception messages 2015-02-04 17:34:04 +01:00
composer.json bumped min PHP version to 5.3.9 2015-01-09 07:51:41 +01:00
LICENSE Updated copyright to 2015 2015-01-01 13:56:52 +01:00
phpunit.xml.dist [Tests] Silenced all deprecations in tests for 2.3 2014-12-18 20:00:19 +01:00
PropertyAccess.php Normalized @deprecated annotations. 2015-01-05 16:02:26 +01:00
PropertyAccessor.php [PropertyAccess] Show property path in all exception messages 2015-02-04 17:34:04 +01:00
PropertyAccessorBuilder.php CS fixes 2014-12-04 20:26:11 +00:00
PropertyAccessorInterface.php Merge branch '2.3' into 2.5 2015-01-03 16:23:51 +01:00
PropertyPath.php [PropertyAccess] Show property path in all exception messages 2015-02-04 17:34:04 +01:00
PropertyPathBuilder.php Docblock fixes 2014-11-30 13:33:44 +00:00
PropertyPathInterface.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
PropertyPathIterator.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
PropertyPathIteratorInterface.php fixed types in phpdocs 2014-04-16 12:30:19 +02:00
README.md updated the composer install command to reflect changes in Composer 2013-09-18 09:27:26 +02:00
StringUtil.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00

PropertyAccess Component

PropertyAccess reads/writes values from/to object/array graphs using a simple string notation.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/PropertyAccess/
$ composer.phar install
$ phpunit