18 lines
215 B
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;
|
||
|
}
|
||
|
}
|