Marco Pivetta
0f26c62e73
Merge pull request #1143 from MajorCaiger/master
...
Fixed a bug so that a versioned entity with a oneToOne id can be created
2014-10-19 11:52:37 +02:00
Marco Pivetta
d361ed904e
Merge pull request #1164 from AlphaStream/fix-querybuilder-on-hhvm
...
[QueryBuilder] Remove unused method parameters to run on HHVM/PHP7
2014-10-19 10:56:32 +02:00
Marco Pivetta
697640f561
Setting default timezone, as HHVM is misconfigured on travis-ci
2014-10-19 10:54:35 +02:00
Alex Bakhturin
b33c9befb7
[QueryBuilder] Remove unused method parameters that are shadowed by local variables
...
PHP5 treats the left part of such assignment as an independent local variable, while HHVM treats it as a reference to the method parameter. This leads to the value of the parameter being changed, which, in turn, causes func_get_args() to return not what is expected.
This commit is a part of the effort to make Symfony run flawlessly on HHVM. This issue causes a bunch of Symfony tests to fail on HHVM.
2014-10-17 11:17:33 -07:00
Marco Pivetta
f5ecabbc21
Merge pull request #1163 from taavit/patch-1
...
Update xml-mapping.rst
2014-10-17 00:13:28 +02:00
Dawid Królak
143f87960e
Update xml-mapping.rst
...
Fixed closing entity tag.
2014-10-17 00:11:56 +02:00
Marco Pivetta
35d4405727
Merge pull request #1161 from gammamatrix/patch-1
...
Fixing error with from() parameters in example
2014-10-14 13:18:27 +02:00
Jeremy Postlethwaite
abe97bf0df
Fixing error with from() parameters in example
...
The from method requires $from and the $alias to be separate parameters.
public function from($from, $alias, $indexBy = null);
The examples show: from('User u')
2014-10-13 20:37:19 -07:00
Marco Pivetta
3ca0dae606
Merge pull request #1156 from NAYZO/patch-1
...
Fixed missed initialization in CommitOrderCalculator.php
2014-10-13 02:36:00 +02:00
Marco Pivetta
1e6ca40ffa
Merge pull request #1157 from gennadiylitvinyuk/patch-1
...
Fixing calls of schema-update tools
2014-10-13 02:32:42 +02:00
Marco Pivetta
1d8ef5ed18
Merge pull request #1158 from josemalonsom/update-query-builder-ref-doc
...
Update QueryBuilder reference documentation.
2014-10-13 02:26:42 +02:00
Jose M. Alonso M
82887d0361
Update QueryBuilder reference documentation.
...
- Updated the signature of methods "from", "innerJoin" and "leftJoin"
since it does not match the actual implementation.
- Added reference to the "join" method.
2014-10-12 20:31:33 +02:00
Gennadiy Litvinyuk
83cd44697d
Fixing calls of schema-update tools
...
composer-generated binaries should be called without php interpreter.
Added reminder to update schema.
2014-10-12 17:50:47 +02:00
Ala Eddine Khefifi
f2bdfe102e
Fixed missed initialization in CommitOrderCalculator.php
2014-10-12 14:04:41 +01:00
Marco Pivetta
10b801dec0
Adding note about a minor BC break: d2 does not call __clone
on new objects anymore.
2014-10-06 14:57:03 +02:00
Marco Pivetta
0bff6aadbc
Merge pull request #1147 from naitsirch/master
...
Extended the docs for mapping attributes precision and scale
2014-10-03 00:50:00 +02:00
Rob Caiger
dd398ce577
- Fixed the basic entity persister so that versioned OneToOne entities can be created
...
- Created an IdentifierFlattener utility class
- Moved the logic for the flatten identifier method into the new utility class
- Replaced calls for private flattenIdentifier to use new utility
- Added appropriate unit tests
2014-10-01 14:01:44 +01:00
Steve Müller
05045d9544
Merge pull request #1148 from naitsirch/hotfix/DWEB-118
...
[DWEB-118] Fixed small typo in documentation about extra lazy associations
2014-09-27 18:19:53 +02:00
naitsirch
547a902bd3
Fixed small typo in documentation about extra lazy associations #DWEB-118
2014-09-26 19:49:12 +02:00
Christian Stoller
d93f648230
Extended the docs for mapping attributes precision and scale
2014-09-25 09:38:34 +02:00
Marco Pivetta
3f8865c6fb
Merge pull request #1092 from birko/pagination-count-walker
...
[DDC-2794] Arbitrary Join count walkers solution
2014-09-23 00:30:30 +02:00
Marco Pivetta
15a00ea807
Clearing cache by --id
, --regex
, --prefix
and --suffix
is not supported anymore.
2014-09-14 17:30:47 +02:00
Marco Pivetta
f12c311a79
Merge pull request #1135 from deeky666/DDC-3304
...
[DDC-3304] Add support for embeddables in entity generator
2014-09-12 21:54:45 +02:00
Steve Müller
b291d8d589
add support for embeddables in entity generator
2014-09-12 20:29:37 +02:00
Steve Müller
b249aa9f65
Merge pull request #1132 from Ocramius/hotfix/DDC-3272-entity-generator-mapped-superclass-casing
...
DDC-3272 entity generator mapped superclass casing
2014-09-10 18:27:51 +02:00
Marco Pivetta
4974edc70a
DDC-3272 - fixing issue with mapped superclass name, minor refactoring
2014-09-10 17:00:06 +02:00
Marco Pivetta
dd9a6bea0a
DDC-3272 - minor cleanups - inspecting a test failure related with @Doctrine\ORM\Mapping\Table
autoloading
2014-09-10 16:57:35 +02:00
Marco Pivetta
ffe38e5088
DDC-3272 - cleanups, importing classes, optimized imports
2014-09-10 16:41:49 +02:00
Marco Pivetta
b9090ef73e
DDC-3272 - failing test (to be run in insulation because of autoloading) that verifies that a wrong annotation is generated for @MappedSuperclass
2014-09-10 16:40:17 +02:00
Marco Pivetta
e2fea427a4
Merge pull request #1127 from crybat/master
...
Document embeddables column prefixing
2014-09-10 16:12:22 +02:00
Mauro Pinto
857fed0310
Make embeddable doc more succinct, fix xml
2014-09-03 11:13:28 +01:00
František Bereň
589d26fc5e
Changed calling $from[0] to using reset($from)
...
changed usage $from[0] according suggestion from @Ocramius to use array
reset function
2014-09-02 08:39:29 +02:00
Mauro Pinto
3bd916f763
Document embeddables column prefixing
2014-09-01 12:48:10 +01:00
Marco Pivetta
d9b43dc649
Merge pull request #1116 from deeky666/DDC-3265
...
[DDC-3265] Fix DocBlock
2014-08-30 04:22:47 +02:00
Marco Pivetta
6e79515a75
Merge pull request #1123 from stof/patch-1
...
Fixed the structure of the reverse-engineered mapping
2014-08-30 04:19:55 +02:00
Marco Pivetta
6e34985b51
Merge pull request #1126 from phansys/master
...
Fixed new line in docblock
2014-08-30 04:13:55 +02:00
Javier Spagnoletti
f731a66e1c
Removed extra line breaks for docblocks in set, get, add and remove method templates.
2014-08-29 23:11:49 -03:00
Javier Spagnoletti
1378626937
Fixed new line in docblock ( 247803715b
).
2014-08-29 22:49:23 -03:00
Guilherme Blanco
2a80e34179
Merge pull request #1125 from kcassam/patch-1
...
Update improving-performance.rst
2014-08-29 18:40:20 -04:00
Ka
2120d41029
add a link to said chapter
2014-08-29 08:47:28 +02:00
Ka
398688ab38
Update improving-performance.rst
2014-08-29 08:42:14 +02:00
František Bereň
d48be34696
CS Fixes
2014-08-28 13:17:25 +02:00
Guilherme Blanco
4b504c9436
Merge pull request #1109 from doctrine/hotfix/DDC-3120-php-5.6-RC3-compat
...
DDC-3120 - PHP 5.6-RC3 compatibility
2014-08-27 12:27:05 -04:00
Christophe Coevoet
f0c02bb6d9
Fixed the test expectations for the DatabaseDriver
2014-08-27 14:00:34 +02:00
Christophe Coevoet
00eb0d3b67
Fixed the structure of the reverse-engineered mapping
2014-08-27 13:56:02 +02:00
Guilherme Blanco
3d4113bd1b
Merge pull request #1122 from Ocramius/feature/support-arithmetic-expressions-in-count
...
Support arithmetic expressions in `COUNT()`
2014-08-26 21:01:56 -04:00
Marco Pivetta
48a86511cb
DDC-3276 - #1122 - updating EBNF in documentation to reflect new syntax support
2014-08-27 02:17:08 +02:00
Marco Pivetta
45d74e7220
DDC-3276 - #1122 - updating EBNF in docblock to reflect new syntax support
2014-08-27 02:12:08 +02:00
Marco Pivetta
a2e0133a94
Adding DDC-3276 test group
2014-08-27 02:01:56 +02:00
Marco Pivetta
097840dc93
Allowing expression in COUNT()
DQL aggregation functions
2014-08-27 01:56:11 +02:00