Completed
Push — 6-php_attributes ( 62d696 )
by Jakub
02:25
created

Skip   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 3
c 1
b 0
f 1
dl 0
loc 9
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
1
<?php
2
declare(strict_types=1);
3
4
namespace MyTester\Annotations\Attributes;
5
6
#[Attribute(Attribute::TARGET_METHOD)]
0 ignored issues
show
introduced by
This comment is 63% valid code; is this commented out code?
Loading history...
7
class Skip {
8
  /** @var mixed */
9
  public $value;
10
11
  /**
12
   * @param mixed $value
13
   */
14
  public function __construct($value = null) {
15
    $this->value = $value;
16
  }
17
}
18
?>