12 lines
159 B
PHP
12 lines
159 B
PHP
|
<?php
|
||
|
|
||
|
namespace Inwebs\PhpCodesniffer\Sniffs\Annotations\data;
|
||
|
|
||
|
class Child extends PropertyOrder
|
||
|
{
|
||
|
/**
|
||
|
* @inheritDoc
|
||
|
*/
|
||
|
protected $test;
|
||
|
}
|