1
0
mirror of synced 2025-02-09 00:39:25 +03:00

Merge pull request #5736 from guilliamxavier/patch-3

Fix PHP syntax error in composite-primary-keys.rst
This commit is contained in:
Michael Moravec 2017-12-08 04:39:56 +01:00 committed by GitHub
commit d32a8634aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ and year of production as primary keys:
/** @Id @Column(type="string") */
private $name;
/** @Id @Column(type="integer") */
private $year
private $year;
public function __construct($name, $year)
{