[DCOM-72] Change CommonException to interface and use it everywhere! Created: 22/Oct/11 Updated: 21/Feb/13 Resolved: 21/Feb/13 |
|
| Status: | Closed |
| Project: | Doctrine Common |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 2.3 |
| Type: | Improvement | Priority: | Major |
| Reporter: | Benjamin Eberlei | Assignee: | Benjamin Eberlei |
| Resolution: | Duplicate | Votes: | 0 |
| Labels: | None | ||
| Comments |
| Comment by Benjamin Eberlei [ 22/Oct/11 ] |
|
This is also necessary for everything else that accepts a class name, we should compile a list of the most important methods. |
| Comment by Marco Pivetta [ 21/Feb/13 ] |
|
See DCOM-80 |
[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 |
[DCOM-67] Introduce immutable DateTime with __toString() Created: 27/Aug/11 Updated: 29/Jan/12 |
|
| Status: | Reopened |
| Project: | Doctrine Common |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 2.3 |
| Type: | Improvement | Priority: | Major |
| Reporter: | Benjamin Eberlei | Assignee: | Benjamin Eberlei |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Comments |
| Comment by Benjamin Eberlei [ 27/Aug/11 ] |
|
Implemented |
| Comment by Koji Ando [ 11/Jan/12 ] |
|
Though it is implemented once on https://github.com/doctrine/common/commit/7140ad3ba0ba2a94238976dd7f310ff92b478c96, I think this issue must be reopened. |
| Comment by Benjamin Eberlei [ 11/Jan/12 ] |
|
Code was removed due to implementation problems. |
[DCOM-73] CodeGeneration using Doctrine\Common\Persistence\Mapping\ObjectMetadata Created: 24/Oct/11 Updated: 16/Feb/12 |
|
| Status: | Open |
| Project: | Doctrine Common |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 2.3 |
| Type: | New Feature | Priority: | Major |
| Reporter: | Benjamin Eberlei | Assignee: | Jonathan H. Wage |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Description |
|
Currently we have tons of code in the ODM/ORMs regarding code generation that are ugly to extend and maintain. We should extract all them into a new component, for example named: doctrine-code-generator
|
[DCOM-80] Add common exceptions into Doctrine\Common Created: 19/Nov/11 Updated: 20/Dec/11 |
|
| Status: | Open |
| Project: | Doctrine Common |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 2.3 |
| Type: | Improvement | Priority: | Major |
| Reporter: | Benjamin Eberlei | Assignee: | Benjamin Eberlei |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Description |
|
Following the ZF and SF2 Standard for Exceptions we should have base exceptions in Common |
[DCOM-179] Underscore at the end of a label is not working with annotations Created: 03/Mar/13 Updated: 03/Mar/13 |
|
| Status: | Open |
| Project: | Doctrine Common |
| Component/s: | Annotations |
| Affects Version/s: | 2.3 |
| Fix Version/s: | 2.3 |
| Type: | Bug | Priority: | Minor |
| Reporter: | exoon | Assignee: | Benjamin Eberlei |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Environment: |
apache2, php 5.4, mysql |
||
| Description |
|
use Zend\Form\Annotation; [...] works:
works not:
Error message: /vendor/doctrine/common/lib/Doctrine/Common/Annotations/AnnotationException.php:52 [Semantical Error] Couldn't find constant Namespace\Entity\::LABEL, property ... The _ at the end is missing. |