| 1 |
<?php |
| 2 |
|
| 3 |
namespace Symfony\Component\Debug\Tests\Fixtures; |
| 4 |
|
| 5 |
/** |
| 6 |
* @final since version 3.3. |
| 7 |
*/ |
| 8 |
class FinalClass1 |
| 9 |
{ |
| 10 |
// simple comment |
| 11 |
} |
| 12 |
|
| 13 |
/** |
| 14 |
* @final |
| 15 |
*/ |
| 16 |
class FinalClass2 |
| 17 |
{ |
| 18 |
// no comment |
| 19 |
} |
| 20 |
|
| 21 |
/** |
| 22 |
* @final comment with @@@ and *** |
| 23 |
* |
| 24 |
* @author John Doe |
| 25 |
*/ |
| 26 |
class FinalClass3 |
| 27 |
{ |
| 28 |
// with comment and a tag after |
| 29 |
} |
| 30 |
|
| 31 |
/** |
| 32 |
* @final |
| 33 |
* |
| 34 |
* @author John Doe |
| 35 |
*/ |
| 36 |
class FinalClass4 |
| 37 |
{ |
| 38 |
// without comment and a tag after |
| 39 |
} |
| 40 |
|
| 41 |
/** |
| 42 |
* @author John Doe |
| 43 |
* |
| 44 |
* |
| 45 |
* @final multiline |
| 46 |
* comment |
| 47 |
*/ |
| 48 |
class FinalClass5 |
| 49 |
{ |
| 50 |
// with comment and a tag before |
| 51 |
} |
| 52 |
|
| 53 |
/** |
| 54 |
* @author John Doe |
| 55 |
* |
| 56 |
* @final |
| 57 |
*/ |
| 58 |
class FinalClass6 |
| 59 |
{ |
| 60 |
// without comment and a tag before |
| 61 |
} |
| 62 |
|
| 63 |
/** |
| 64 |
* @author John Doe |
| 65 |
* |
| 66 |
* @final another |
| 67 |
* multiline comment... |
| 68 |
* |
| 69 |
* @return string |
| 70 |
*/ |
| 71 |
class FinalClass7 |
| 72 |
{ |
| 73 |
// with comment and a tag before and after |
| 74 |
} |
| 75 |
|
| 76 |
/** |
| 77 |
* @author John Doe |
| 78 |
* @final |
| 79 |
* |
| 80 |
* @return string |
| 81 |
*/ |
| 82 |
class FinalClass8 |
| 83 |
{ |
| 84 |
// without comment and a tag before and after |
| 85 |
} |
| 86 |
|