PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 3.2.3
ShareThis Dashboard for Google Analytics v3.2.3
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / lib / analytics-admin / vendor / symfony / polyfill-php80 / Resources / stubs / Attribute.php
googleanalytics / lib / analytics-admin / vendor / symfony / polyfill-php80 / Resources / stubs Last commit date
Attribute.php 3 years ago PhpToken.php 3 years ago Stringable.php 3 years ago UnhandledMatchError.php 3 years ago ValueError.php 3 years ago
Attribute.php
23 lines
1 <?php
2
3 #[Attribute(Attribute::TARGET_CLASS)]
4 final class Attribute
5 {
6 public const TARGET_CLASS = 1;
7 public const TARGET_FUNCTION = 2;
8 public const TARGET_METHOD = 4;
9 public const TARGET_PROPERTY = 8;
10 public const TARGET_CLASS_CONSTANT = 16;
11 public const TARGET_PARAMETER = 32;
12 public const TARGET_ALL = 63;
13 public const IS_REPEATABLE = 64;
14
15 /** @var int */
16 public $flags;
17
18 public function __construct(int $flags = self::TARGET_ALL)
19 {
20 $this->flags = $flags;
21 }
22 }
23