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
2de3202f
Commit
2de3202f
authored
Oct 07, 2020
by
Guillaume Perréal
Browse files
Corrections PHPStan.
parent
7ec9e4f9
Changes
4
Hide whitespace changes
Inline
Side-by-side
src/DependencyInjection/Builder/ClassFilterBuilder.php
View file @
2de3202f
...
...
@@ -116,7 +116,7 @@ class ClassFilterBuilder
}
/**
* @param
type
$id
* @param
string
$id
*
* @return Reference
*/
...
...
src/Model/Namespace_/Php/AbstractNamespace.php
View file @
2de3202f
...
...
@@ -35,7 +35,7 @@ abstract class AbstractNamespace extends Base
private
$children
=
[];
/**
* @param
type
$namespaceName
* @param
string
$namespaceName
*
* @return NamespaceInterface
*/
...
...
src/Model/Node/Member/Member.php
View file @
2de3202f
...
...
@@ -33,6 +33,11 @@ class Member extends TypedSymbol implements MethodInterface, AttributeInterface
*/
private
$visibility
;
/**
* @param string $symbol
* @param string|bool $type
* @param string $visibility
*/
public
function
__construct
(
$symbol
,
$type
=
false
,
$visibility
=
self
::
UNKNOWN
)
{
parent
::
__construct
(
$symbol
,
$type
);
...
...
src/Model/TypedSymbol.php
View file @
2de3202f
...
...
@@ -29,7 +29,7 @@ use Irstea\PlantUmlBundle\Writer\WriterInterface;
class
TypedSymbol
implements
WritableInterface
{
/**
* @var string
* @var string
|bool
*/
private
$type
;
...
...
@@ -39,8 +39,8 @@ class TypedSymbol implements WritableInterface
private
$symbol
;
/**
* @param
type
$symbol
* @param
type
$type
* @param
string
$symbol
* @param
string|bool
$type
*/
public
function
__construct
(
$symbol
,
$type
=
false
)
{
...
...
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