mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
14 lines
236 B
PHP
14 lines
236 B
PHP
<?php
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS)]
|
|
final class AllowDynamicProperties
|
|
{
|
|
public function __construct() {}
|
|
}
|
|
|
|
#[Attribute(Attribute::TARGET_PARAMETER)]
|
|
final class SensitiveParameter
|
|
{
|
|
public function __construct() {}
|
|
}
|