Luís Cobucci
|
74c8a08828
|
Use short-array syntax on "tests" directory
|
2016-12-07 23:33:41 +01:00 |
|
Mikhail Shamin
|
bf322b903d
|
Optimize imports. Remove full qualified class names
|
2016-05-11 01:55:12 +07:00 |
|
Guilherme Blanco
|
843966ac50
|
General fixes across CS, type resolving, test fixes, etc
|
2015-11-07 03:55:05 +00:00 |
|
Javier Spagnoletti
|
97cc49033e
|
Updated syntax for ``integer ` and `boolean `` types
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets |
| License | MIT
| Doc PR |
Used short syntax for ```integer``` and ```boolean``` types.
**Before**
```php
/**
* @var integer
*
* @ORM\Column(name="some_integer_field", type="integer")
*/
private $someIntegerField;
/**
* @var boolean
*
* @ORM\Column(name="some_boolean_field", type="boolean")
*/
private $someBooleanField;
```
**After**
```php
/**
* @var int
*
* @ORM\Column(name="some_integer_field", type="integer")
*/
private $someIntegerField;
/**
* @var bool
*
* @ORM\Column(name="some_boolean_field", type="boolean")
*/
private $someBooleanField;
```
|
2015-07-14 15:30:13 -03:00 |
|
Fabio B. Silva
|
85790f0752
|
support for attribute override
|
2012-04-21 01:43:18 -03:00 |
|
Fabio B. Silva
|
9e010cbd34
|
added xml/yml drivers
|
2012-04-21 01:41:04 -03:00 |
|
Fabio B. Silva
|
30fdf8dd1b
|
added support for @AssociationOverride
|
2012-04-21 01:38:34 -03:00 |
|