akanehara / ginq

`LINQ to Object` inspired DSL for PHP
MIT License
193 stars 18 forks source link

Added support for "symfony" notation and functionality in PathSelector #36

Closed hason closed 11 years ago

hason commented 11 years ago

Related to #34

In the Symfony is the PropertyAccess component, which provides function to read from an object or array using a simple string notation. The big advantage of this component is that it can call the corresponding methods (getters, hassers, issers, get, call) to accessing private properties of an object.

For more information see http://symfony.com/doc/current/components/property_access/introduction.html

akanehara commented 11 years ago

It's a good idea :+1: I consider how to implement it.