[DCOM-101] Implement FilesystemCache Created: 08/Jun/12 Updated: 25/Jun/12 Resolved: 25/Jun/12 |
|
| Status: | Resolved |
| Project: | Doctrine Common |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 2.3 |
| Type: | New Feature | Priority: | Major |
| Reporter: | Guilherme Blanco | Assignee: | Fabio B. Silva |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
Implement FilesystemCache, storing var exported pieces that could be loaded on demand. |
| Comments |
| Comment by Fabio B. Silva [ 25/Jun/12 ] |
|
Fixed By : https://github.com/doctrine/common/commit/8df9cdf3b921a3b59bbba51d5ba9063509ef6a1a |
[DCOM-94] Support for constants on annotation reader Created: 06/Feb/12 Updated: 15/Mar/12 Resolved: 15/Mar/12 |
|
| Status: | Resolved |
| Project: | Doctrine Common |
| Component/s: | Annotations |
| Affects Version/s: | None |
| Fix Version/s: | 2.3 |
| Type: | New Feature | Priority: | Minor |
| Reporter: | Fabio B. Silva | Assignee: | Fabio B. Silva |
| Resolution: | Fixed | Votes: | 1 |
| Labels: | None | ||
| Description |
|
Would be nice get support for constants on annotation reader. Usage : /**
* @SomeAnnotation(PHP_EOL)
* @SomeAnnotation(SomeClass::SOME_VALUE)
* @SomeAnnotation({SomeClass::VALUE1,SomeClass::VALUE2})
* @SomeAnnotation({SomeClass::SOME_KEY = SomeClass::SOME_VALUE})
*/
|
| Comments |
| Comment by gabriel sancho [ 22/Feb/12 ] |
|
file doctrine-2.2.0/Doctrine/Common/Lexer.php
define('_db_clase_05', '"test.Clase_05"'); if(is_string($match[0]) && ($match[0][0] == '_') && defined($match[0])) { $aux_val = constant($match[0]); $match[0] = $aux_val; } |
| Comment by Fabio B. Silva [ 22/Feb/12 ] |
|
hello gabriel, I have a pull request opened : https://github.com/doctrine/common/pull/104 feel free to join us and comment ... |
| Comment by Fabio B. Silva [ 15/Mar/12 ] |
|
Fixed : https://github.com/doctrine/common/commit/970912eec0a1371e03de7010556d9280c26d8083 |