chamilo/chamilo-lms

View on GitHub
src/CoreBundle/Entity/SequenceRuleCondition.php

Summary

Maintainability
A
0 mins
Test Coverage

Add a single space around assignment operators
Open

declare(strict_types=1);

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

    #[ORM\Id]

Missing function doc comment
Open

    public function setCondition(?SequenceCondition $condition): self

Missing function doc comment
Open

    public function setRule(?SequenceRule $rule): self

Missing function doc comment
Open

    public function getRule(): ?SequenceRule

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

    #[ORM\GeneratedValue]

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

    #[ORM\ManyToOne(targetEntity: SequenceRule::class)]

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

    #[ORM\Column(name: 'id', type: 'integer')]

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

    #[ORM\ManyToOne(targetEntity: SequenceCondition::class)]

Missing function doc comment
Open

    public function getCondition(): ?SequenceCondition

You must use "/**" style comments for a class comment
Open

class SequenceRuleCondition

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

#[ORM\Table(name: 'sequence_rule_condition')]

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

#[ORM\Entity]

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

    #[ORM\JoinColumn(name: 'sequence_condition_id', referencedColumnName: 'id')]

Perl-style comments are not allowed. Use "// Comment." or "/* comment */" instead.
Open

    #[ORM\JoinColumn(name: 'sequence_rule_id', referencedColumnName: 'id')]

There are no issues that match your filters.

Category
Status