prolab-api/vendor/zircote/swagger-php/tests/Fixtures/AnotherNamespace/Annotations/Unrelated.php

18 lines
215 B
PHP
Raw Normal View History

2025-10-04 09:16:19 +00:00
<?php
namespace AnotherNamespace\Annotations;
/**
* Unrelated annotation.
*
* @Annotation
*/
class Unrelated
{
protected $s;
public function __construct($s = null)
{
$this->s = $s;
}
}