We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40f299f commit e3d7c60Copy full SHA for e3d7c60
docs/en/tutorials/getting-started.rst
@@ -144,7 +144,7 @@ step:
144
145
// Create a simple "default" Doctrine ORM configuration for Attributes
146
$config = ORMSetup::createAttributeMetadataConfiguration(
147
- paths: array(__DIR__."/src"),
+ paths: [__DIR__ . '/src'],
148
isDevMode: true,
149
);
150
// or if you prefer annotation, YAML or XML
@@ -153,7 +153,7 @@ step:
153
// isDevMode: true,
154
// );
155
// $config = ORMSetup::createXMLMetadataConfiguration(
156
- // paths: array(__DIR__."/config/xml"),
+ // paths: [__DIR__ . '/config/xml'],
157
158
//);
159
// $config = ORMSetup::createYAMLMetadataConfiguration(
0 commit comments