for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace MyTester\Annotations\Attributes;
#[Attribute(Attribute::TARGET_METHOD)]
class Skip {
/** @var mixed */
public $value;
/**
* @param mixed $value
*/
public function __construct($value = null) {
$this->value = $value;
}
?>