1
0
Fork 0
mirror of synced 2025-04-03 05:13:37 +03:00
doctrine2/tests/Doctrine/Tests
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
..
DbalTypes #1336 - class constants over string references in tests - removing useless QueryBuilder usage 2015-03-17 21:21:20 +00:00
EventListener Fix docs 2013-12-16 11:05:05 -05:00
Mocks Fix: generated IDs are converted to integer 2015-03-23 17:51:04 +01:00
Models Updated syntax for ``integer` and `boolean`` types 2015-07-14 15:30:13 -03:00
ORM Updated syntax for ``integer` and `boolean`` types 2015-07-14 15:30:13 -03:00
DbalFunctionalTestCase.php Fixed documentation for Doctrine\Tests 2012-12-14 18:55:49 +00:00
DbalTestCase.php Fixed documentation for Doctrine\Tests 2012-12-14 18:55:49 +00:00
DoctrineTestCase.php Fixed documentation for Doctrine\Tests 2012-12-14 18:55:49 +00:00
OrmFunctionalTestCase.php problem with LimitSubqueryOutputWalker when use InheritanceType 2015-03-31 21:36:32 +01:00
OrmPerformanceTestCase.php Updated syntax for ``integer` and `boolean`` types 2015-07-14 15:30:13 -03:00
OrmTestCase.php Updated syntax for ``integer` and `boolean`` types 2015-07-14 15:30:13 -03:00
TestInit.php [DDC-3461] Renamed AssocationBuilder::isPrimaryKey() to makePrimaryKey(). Same for FieldBuilder and depreceating isPrimaryKey(). Adjust tests. Revert change in ClassMetadataInfo and fix bug. 2015-03-18 17:06:30 +01:00
TestUtil.php Updated syntax for ``integer` and `boolean`` types 2015-07-14 15:30:13 -03:00