1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/docs/running_psalm/issues/InvalidAttribute.md
2021-01-29 11:44:36 +01:00

299 B

InvalidAttribute

Emitted when using an attribute on an element that doesn't match the attribute's target

<?php
namespace Foo;

#[\Attribute(\Attribute::TARGET_CLASS)]
class Table {
    public function __construct(public string $name) {}
}

#[Table("videos")]
function foo() : void {}