21 lines
487 B
PHP
21 lines
487 B
PHP
<?php
|
|
|
|
namespace JetBrains\PhpStorm;
|
|
|
|
use Attribute;
|
|
|
|
/**
|
|
* Specifies that the parameter is a string that represents source code in a different language.
|
|
* An IDE will automatically inject the specified language into the passed string literals.
|
|
*
|
|
* @since 8.0
|
|
*/
|
|
#[Attribute(Attribute::TARGET_PARAMETER)]
|
|
class Language
|
|
{
|
|
/**
|
|
* @param string $languageName Language name like "PHP", "SQL", "RegExp", etc...
|
|
*/
|
|
public function __construct(string $languageName) {}
|
|
}
|