私は codeIgniter で Doctrine2 を使用しています。いくつかのモデルをyml
フォーマットで作成しました。コマンドラインを使用して、プロキシとエンティティを作成しました。データベース テーブルを作成しようとすると、次のエラーが発生します。
[Doctrine\ORM\Mapping\MappingException]
クラス 'Entities\category' の無効なマッピング ファイル 'Entities.category.dcm.yml'。
ここにありEntities.category.dcm.yml
ます:
Entities\Category:
type: entity
table: categories
fields:
id:
type: integer
id: true
generator:
strategy: AUTO
name:
type: string
length: 50
nullable: false
description:
type: string
length: 255