This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/PropertyInfo/Tests/Fixtures/ParentDummy.php
2015-09-26 09:46:20 +02:00

79 lines
1.1 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;
/**
* @author Kévin Dunglas <dunglas@gmail.com>
*/
class ParentDummy
{
/**
* Short description.
*
* Long description.
*/
public $foo;
/**
* @var float
*/
public $foo2;
/**
* @var callback
*/
public $foo3;
/**
* @var void
*/
public $foo4;
/**
* @var mixed
*/
public $foo5;
/**
* @var \SplFileInfo[]|resource
*/
public $files;
/**
* @return bool|null
*/
public function isC()
{
}
/**
* @return bool
*/
public function canD()
{
}
/**
* @param resource $e
*/
public function addE($e)
{
}
/**
* @param \DateTime $f
*/
public function removeF(\DateTime $f)
{
}
}