Current File : //var/www/prestashop/modules/psxdesign/vendor/jetbrains/phpstorm-stubs/meta/attributes/Language.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) {}
}