php-codesniffer/tests/DigiComp/Sniffs/Annotations/data/PropertyOrder.php

44 lines
669 B
PHP
Raw Normal View History

2021-08-01 13:33:41 +02:00
<?php
namespace Inwebs\PhpCodesniffer\Sniffs\Annotations\data;
class PropertyOrder
{
/**
* A small description.
*
* And
* some
* Text
*
* @var string With a nice and multi line
* description
* @Flow\Inject(name="StrangeContent")
* @ORM\Column(stuff={
* "hallo"
* })
*/
protected $test;
/**
* A small description.
*
* And
* some
* Text
*
* @Flow\Inject
* @var string
* @ORM\Column(stuff={
* "hallo"
* })
*/
protected $testTwo;
/**
* @Flow\Inject
* @var \stdClass mega!
*/
protected $valid;
}