static-php-cli/src/StaticPHP/Attribute/Artifact/CustomSourceCheckUpdate.php

12 lines
242 B
PHP

<?php
declare(strict_types=1);
namespace StaticPHP\Attribute\Artifact;
#[\Attribute(\Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
class CustomSourceCheckUpdate
{
public function __construct(public string $artifact_name) {}
}