1
0
Fork 0
mirror of synced 2025-04-01 20:36:14 +03:00
doctrine2/lib/Doctrine/ORM
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
..
Cache Fix second level caching for queries with multiple joins 2015-07-03 14:45:25 +02:00
Decorator make lock mode usage consistent 2014-02-05 15:13:53 +01:00
Event #1209 DDC-3427 - removing leftover EntityManager hints (using interface instead) 2015-01-16 14:44:31 +01:00
Id Merge pull request #1384 from TomasVotruba/patch-1 2015-04-18 11:07:17 +02:00
Internal Added PHPDoc return type false of next method 2015-05-15 12:06:56 +02:00
Mapping Fix crashes in ConvertMappingCommand and GenerateEntitiesCommand when using entities with joined table inheritance 2015-03-20 13:59:27 -04:00
Persisters PersisterException: missing license added 2015-04-17 12:46:52 +02:00
Proxy DDC-3427 - s/EntityManager/EntityManagerInterface in type-hints 2015-01-16 14:21:30 +01:00
Query Minor docblock correction (discovered during testing) 2015-04-02 23:43:41 +01:00
Repository #1159 - protecting Doctrine\ORM\Repository\DefaultRepositoryFactory API by making it final and its protected members private 2014-10-14 01:46:50 +02:00
Tools Updated syntax for ``integer` and `boolean`` types 2015-07-14 15:30:13 -03:00
Utility #1113 - minor CS fixes (spacing/alignment) 2015-02-16 01:02:56 +00:00
AbstractQuery.php Allow null to be passed to setHydrationCacheProfile 2015-05-20 15:10:01 +02:00
Cache.php DDC-3078 - constructor should never be interfaced 2014-04-17 15:16:56 -04:00
Configuration.php Fix PHPDoc typo 2015-05-07 14:05:20 +02:00
EntityManager.php Changed some wrong usage of the @internal phpdoc 2015-03-15 16:53:34 +01:00
EntityManagerInterface.php #1172 - adding @method annotation to simplify static introspection 2015-01-16 22:50:52 +01:00
EntityNotFoundException.php #1240 DDC-3479 - Basic coverage for EntityNotFoundException 2015-01-13 02:55:51 +01:00
EntityRepository.php Remove useless dependency 2014-05-15 18:22:56 +02:00
Events.php #385 #1181 DDC-3385 - fixing Events docblocks as per @deeky666's review 2015-01-13 21:15:34 +01:00
LazyCriteriaCollection.php Classify persisters into more granular namespaces. 2015-01-16 00:10:25 +01:00
NativeQuery.php Fixed unused 'use' statements. 2012-12-13 18:19:21 +00:00
NonUniqueResultException.php Fixed unused 'use' statements. 2012-12-13 18:19:21 +00:00
NoResultException.php Fixed missed documentation issues in Doctrine\ORM 2012-12-14 20:12:56 +00:00
OptimisticLockException.php Removed unnecessary is_object() check 2013-10-01 13:00:37 +02:00
ORMException.php Improved composite primary key support 2015-02-16 00:53:46 +00:00
ORMInvalidArgumentException.php #1228 DDC-3490 - Remove unused method 2015-01-18 01:05:53 +01:00
PersistentCollection.php [DDC-3382] Allow orphan removal to be cancelled 2015-06-12 16:44:13 +02:00
PessimisticLockException.php Fix some LGPL occurances to MIT 2013-10-02 12:07:37 +02:00
Query.php Query::_getQueryCacheId() directly accesses $this->_parsedTypes 2015-03-24 17:14:45 +01:00
QueryBuilder.php Merge pull request #1303 from mrkrstphr/querybuilder-get-all-aliases 2015-03-17 23:33:43 +00:00
TransactionRequiredException.php Fix some LGPL occurances to MIT 2013-10-02 12:07:37 +02:00
UnexpectedResultException.php Fixed unused 'use' statements. 2012-12-13 18:19:21 +00:00
UnitOfWork.php [DDC-3382] Allow orphan removal to be cancelled 2015-06-12 16:44:13 +02:00
Version.php Bumping version to 2.6.0-DEV 2015-04-02 21:42:47 +01:00