1
0
Fork 0
mirror of synced 2025-04-03 05:13:37 +03:00
doctrine2/lib/Doctrine/ORM/Tools
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
..
Console Add proper pluralization into UpdateCommand 2015-02-24 18:13:13 +00:00
Event Allow all EntityManagerInterface implementations 2014-05-28 12:30:40 +02:00
Export XML export driver: fix export options 2014-12-07 13:05:19 +02:00
Pagination minor: Code quality in Paginator 2015-07-07 10:09:06 +02:00
AttachEntityListenersListener.php Event listener to programmatically attach entity listeners. 2013-11-18 15:03:00 -05:00
ConvertDoctrine1Schema.php [2.5][Bug] Fix ConvertDoctrine1Schema->getMetadata 2015-06-05 17:08:50 +01:00
DebugUnitOfWorkListener.php DDC-3427 - s/EntityManager/EntityManagerInterface in type-hints 2015-01-16 14:21:30 +01:00
DisconnectedClassMetadataFactory.php Fixed documentation for Doctrine\ORM\Tools 2012-12-13 18:55:44 +00:00
EntityGenerator.php Updated syntax for ``integer` and `boolean`` types 2015-07-14 15:30:13 -03:00
EntityRepositoryGenerator.php visibility changed && few simple fixes 2014-09-09 22:17:10 +03:00
ResolveTargetEntityListener.php #385 #1181 DDC-3385 - aligning tests and implementation to new OnClassMetadataNotFoundEventArgs API 2015-01-13 20:56:57 +01:00
SchemaTool.php fix index duplication for unique association join columns 2015-01-08 15:39:41 +01:00
SchemaValidator.php Fixed typo 2014-10-21 22:43:26 -04:00
Setup.php set namespace in setup only on CacheProvider instances 2014-06-26 01:29:35 +02:00
ToolEvents.php Fixed typos 2013-03-11 00:08:58 +00:00
ToolsException.php Fixed documentation for Doctrine\ORM\Tools 2012-12-13 18:55:44 +00:00