Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pôle IS
Bundles Symfony 2
plantuml-bundle
Commits
e9fe5c92
Commit
e9fe5c92
authored
Mar 08, 2016
by
Guillaume Perréal
Browse files
Utilise un point comme séparateur de namespace.
parent
0af648c3
Changes
2
Show whitespace changes
Inline
Side-by-side
Command/EntitySchemaCommand.php
View file @
e9fe5c92
...
@@ -52,7 +52,7 @@ class EntitySchemaCommand extends ContainerAwareCommand
...
@@ -52,7 +52,7 @@ class EntitySchemaCommand extends ContainerAwareCommand
$stream
=
fopen
(
"php://output"
,
"wt"
);
$stream
=
fopen
(
"php://output"
,
"wt"
);
fputs
(
$stream
,
"@startuml
\n
"
);
fputs
(
$stream
,
"@startuml
\n
"
);
fputs
(
$stream
,
'
set namespaceSeparator
\\\\'
.
"
\n
"
);
fputs
(
$stream
,
"
set namespaceSeparator
.
\n
"
);
$visitor
->
outputTo
(
$stream
);
$visitor
->
outputTo
(
$stream
);
fputs
(
$stream
,
"@enduml
\n
"
);
fputs
(
$stream
,
"@enduml
\n
"
);
fclose
(
$stream
);
fclose
(
$stream
);
...
...
Model/Node/BaseNode.php
View file @
e9fe5c92
...
@@ -65,7 +65,7 @@ class BaseNode implements UmlNodeInterface
...
@@ -65,7 +65,7 @@ class BaseNode implements UmlNodeInterface
public
function
outputAliasTo
(
$stream
)
public
function
outputAliasTo
(
$stream
)
{
{
fputs
(
$stream
,
'"'
.
str_replace
(
'\\'
,
'
\\\\
'
,
$this
->
name
)
.
'"'
);
fputs
(
$stream
,
'"'
.
str_replace
(
'\\'
,
'
.
'
,
$this
->
name
)
.
'"'
);
}
}
protected
function
outputClassifiersTo
(
$stream
)
protected
function
outputClassifiersTo
(
$stream
)
...
...
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