Current path: home/webdevt/prestashop17/vendor/symfony/symfony/src/Symfony/Component/PropertyInfo/Tests/Fixtures/
?? Go up: /home/webdevt/prestashop17/vendor/symfony/symfony/src/Symfony/Component/PropertyInfo/Tests
<?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 callable
*/
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)
{
}
}