coupon-admin/vendor/zircote/swagger-php/tests/Fixtures/AnotherNamespace/Annotations/Unrelated.php

18 lines
215 B
PHP

<?php
namespace AnotherNamespace\Annotations;
/**
* Unrelated annotation.
*
* @Annotation
*/
class Unrelated
{
protected $s;
public function __construct($s = null)
{
$this->s = $s;
}
}