Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
39a6c019
Commit
39a6c019
authored
Apr 30, 2010
by
Roman S. Borschel
Browse files
Options
Browse Files
Download
Plain Diff
Merge commit 'upstream/master'
parents
db2be55e
41e830ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
XmlDriver.php
lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php
+3
-3
XmlExporter.php
lib/Doctrine/ORM/Tools/Export/Driver/XmlExporter.php
+1
-1
No files found.
lib/Doctrine/ORM/Mapping/Driver/XmlDriver.php
View file @
39a6c019
...
@@ -203,9 +203,9 @@ class XmlDriver extends AbstractFileDriver
...
@@ -203,9 +203,9 @@ class XmlDriver extends AbstractFileDriver
if
(
isset
(
$idElement
->
{
'sequence-generator'
}))
{
if
(
isset
(
$idElement
->
{
'sequence-generator'
}))
{
$seqGenerator
=
$idElement
->
{
'sequence-generator'
};
$seqGenerator
=
$idElement
->
{
'sequence-generator'
};
$metadata
->
setSequenceGeneratorDefinition
(
array
(
$metadata
->
setSequenceGeneratorDefinition
(
array
(
'sequenceName'
=>
$seqGenerator
->
{
'sequence-name'
}
,
'sequenceName'
=>
(
string
)
$seqGenerator
[
'sequence-name'
]
,
'allocationSize'
=>
$seqGenerator
->
{
'allocation-size'
}
,
'allocationSize'
=>
(
string
)
$seqGenerator
[
'allocation-size'
]
,
'initialValue'
=>
$seqGeneratorAnnot
->
{
'initial-value'
}
'initialValue'
=>
(
string
)
$seqGeneratorAnnot
[
'initial-value'
]
));
));
}
else
if
(
isset
(
$idElement
->
{
'table-generator'
}))
{
}
else
if
(
isset
(
$idElement
->
{
'table-generator'
}))
{
throw
MappingException
::
tableIdGeneratorNotImplemented
(
$className
);
throw
MappingException
::
tableIdGeneratorNotImplemented
(
$className
);
...
...
lib/Doctrine/ORM/Tools/Export/Driver/XmlExporter.php
View file @
39a6c019
...
@@ -53,7 +53,7 @@ class XmlExporter extends AbstractExporter
...
@@ -53,7 +53,7 @@ class XmlExporter extends AbstractExporter
$xml
->
addAttribute
(
'xmlns'
,
'http://doctrine-project.org/schemas/orm/doctrine-mapping'
);
$xml
->
addAttribute
(
'xmlns'
,
'http://doctrine-project.org/schemas/orm/doctrine-mapping'
);
$xml
->
addAttribute
(
'xmlns:xsi'
,
'http://www.w3.org/2001/XMLSchema-instance'
);
$xml
->
addAttribute
(
'xmlns:xsi'
,
'http://www.w3.org/2001/XMLSchema-instance'
);
$xml
->
addAttribute
(
'xsi:schemaLocation'
,
'http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd'
);
$xml
->
addAttribute
(
'xsi:schemaLocation'
,
'http://doctrine-project.org/schemas/orm/doctrine-mapping
http://doctrine-project.org/schemas/orm/doctrine-mapping
.xsd'
);
if
(
$metadata
->
isMappedSuperclass
)
{
if
(
$metadata
->
isMappedSuperclass
)
{
$root
=
$xml
->
addChild
(
'mapped-superclass'
);
$root
=
$xml
->
addChild
(
'mapped-superclass'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment