File tree Expand file tree Collapse file tree 7 files changed +1
-21
lines changed
SoftDeleteable/Mapping/Event/Adapter
Timestampable/Mapping/Event/Adapter Expand file tree Collapse file tree 7 files changed +1
-21
lines changed Original file line number Diff line number Diff line change 52
52
'no_homoglyph_names ' => true ,
53
53
'no_null_property_initialization ' => true ,
54
54
'no_superfluous_elseif ' => true ,
55
- 'no_superfluous_phpdoc_tags ' => false ,
55
+ 'no_superfluous_phpdoc_tags ' => [ ' allow_mixed ' => true ] ,
56
56
'no_unset_on_property ' => true ,
57
57
'no_useless_else ' => true ,
58
58
'nullable_type_declaration_for_default_null_value ' => ['use_nullable_type_declaration ' => true ],
69
69
'php_unit_construct ' => true ,
70
70
'php_unit_dedicate_assert ' => true ,
71
71
'php_unit_dedicate_assert_internal_type ' => true ,
72
- 'php_unit_method_casing ' => false ,
73
72
'php_unit_mock ' => true ,
74
73
'php_unit_namespaced ' => true ,
75
74
'php_unit_set_up_tear_down_visibility ' => true ,
Original file line number Diff line number Diff line change 23
23
*/
24
24
final class ODM extends BaseAdapterODM implements SoftDeleteableAdapter, ClockAwareAdapterInterface
25
25
{
26
- /**
27
- * @var ClockInterface|null
28
- */
29
26
private ?ClockInterface $ clock = null ;
30
27
31
28
public function setClock (ClockInterface $ clock ): void
Original file line number Diff line number Diff line change 25
25
*/
26
26
final class ORM extends BaseAdapterORM implements SoftDeleteableAdapter, ClockAwareAdapterInterface
27
27
{
28
- /**
29
- * @var ClockInterface|null
30
- */
31
28
private ?ClockInterface $ clock = null ;
32
29
33
30
public function setClock (ClockInterface $ clock ): void
Original file line number Diff line number Diff line change 23
23
*/
24
24
final class ODM extends BaseAdapterODM implements TimestampableAdapter, ClockAwareAdapterInterface
25
25
{
26
- /**
27
- * @var ClockInterface|null
28
- */
29
26
private ?ClockInterface $ clock = null ;
30
27
31
28
public function setClock (ClockInterface $ clock ): void
Original file line number Diff line number Diff line change 25
25
*/
26
26
final class ORM extends BaseAdapterORM implements TimestampableAdapter, ClockAwareAdapterInterface
27
27
{
28
- /**
29
- * @var ClockInterface|null
30
- */
31
28
private ?ClockInterface $ clock = null ;
32
29
33
30
public function setClock (ClockInterface $ clock ): void
Original file line number Diff line number Diff line change 23
23
trait EntityRepositoryCompat
24
24
{
25
25
/**
26
- * @param string $method
27
- * @param array $args
28
- *
29
- * @return mixed
30
- *
31
26
* @phpstan-param list<mixed> $args
32
27
*/
33
28
public function __call (string $ method , array $ args ): mixed
Original file line number Diff line number Diff line change @@ -47,8 +47,6 @@ trait MaterializedPath
47
47
protected $ hash ;
48
48
49
49
/**
50
- * @param self $parent
51
- *
52
50
* @return self
53
51
*/
54
52
public function setParent (?self $ parent = null )
You can’t perform that action at this time.
0 commit comments