129 lines
1.8 KiB
PHP
129 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Component\PropertyInfo\Tests\Fixtures;
|
|
|
|
use Symfony\Component\PropertyInfo\Tests\Fixtures\RootDummy\RootDummyItem;
|
|
|
|
/**
|
|
* @author Kévin Dunglas <dunglas@gmail.com>
|
|
*/
|
|
class ParentDummy
|
|
{
|
|
/**
|
|
* Short description.
|
|
*
|
|
* Long description.
|
|
*/
|
|
public $foo;
|
|
|
|
/**
|
|
* @var float
|
|
*/
|
|
public $foo2;
|
|
|
|
/**
|
|
* @var callable
|
|
*/
|
|
public $foo3;
|
|
|
|
/**
|
|
* @var void
|
|
*/
|
|
public $foo4;
|
|
|
|
/**
|
|
* @var mixed
|
|
*/
|
|
public $foo5;
|
|
|
|
/**
|
|
* @var \SplFileInfo[]|resource
|
|
*/
|
|
public $files;
|
|
|
|
/**
|
|
* @var static
|
|
*/
|
|
public $propertyTypeStatic;
|
|
|
|
/**
|
|
* @var parent
|
|
*/
|
|
public $parentAnnotationNoParent;
|
|
|
|
/**
|
|
* @var RootDummyItem[]
|
|
*/
|
|
public $rootDummyItems;
|
|
|
|
/**
|
|
* @var \Symfony\Component\PropertyInfo\Tests\Fixtures\RootDummy\RootDummyItem
|
|
*/
|
|
public $rootDummyItem;
|
|
|
|
/**
|
|
* @return bool|null
|
|
*/
|
|
public function isC()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return true|null
|
|
*/
|
|
public function isCt()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return false|null
|
|
*/
|
|
public function isCf()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function canD()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return true
|
|
*/
|
|
public function canDt()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @return false
|
|
*/
|
|
public function canDf()
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param resource $e
|
|
*/
|
|
public function addE($e)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param \DateTimeImmutable $f
|
|
*/
|
|
public function removeF(\DateTimeImmutable $f)
|
|
{
|
|
}
|
|
}
|