mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
20 lines
338 B
PHP
20 lines
338 B
PHP
<?php
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS)]
|
|
final class AllowDynamicProperties
|
|
{
|
|
public function __construct() {}
|
|
}
|
|
|
|
#[Attribute(Attribute::TARGET_METHOD)]
|
|
final class Override
|
|
{
|
|
public function __construct() {}
|
|
}
|
|
|
|
#[Attribute(Attribute::TARGET_PARAMETER)]
|
|
final class SensitiveParameter
|
|
{
|
|
public function __construct() {}
|
|
}
|