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;
use Symfony\Component\Serializer\Annotation\Groups;
/**
* @author Kévin Dunglas <dunglas@gmail.com>
*/
class Dummy extends ParentDummy
{
/**
* @var string This is bar
*/
private $bar;
/**
* Should be used.
*
* @var int Should be ignored
*/
protected $baz;
/**
* @var \DateTime
*/
public $bal;
/**
* @var ParentDummy
*/
public $parent;
/**
* @var \DateTime[]
* @Groups({"a", "b"})
*/
public $collection;
/**
* @var string[][]
*/
public $nestedCollection;
/**
* @var mixed[]
*/
public $mixedCollection;
/**
* @var ParentDummy
*/
public $B;
/**
* @var int
*/
protected $Id;
/**
* @var string
*/
public $Guid;
/**
* Nullable array.
*
* @var array|null
*/
public $g;
/**
* @var ?string
*/
public $h;
/**
* @var ?string|int
*/
public $i;
/**
* @var ?\DateTime
*/
public $j;
/**
* @var array
*/
private $xTotals;
/**
* @var string
*/
private $YT;
/**
* This should not be removed.
*
* @var
*/
public $emptyVar;
public static function getStatic()
{
}
/**
* @return string
*/
public static function staticGetter()
{
}
public static function staticSetter(\DateTime $d)
{
}
/**
* A.
*
* @return int
*/
public function getA()
{
}
/**
* B.
*
* @param ParentDummy|null $parent
*/
public function setB(ParentDummy $parent = null)
{
}
/**
* Date of Birth.
*
* @return \DateTime
*/
public function getDOB()
{
}
/**
* @return int
*/
public function getId()
{
}
public function get123()
{
}
/**
* @param self $self
*/
public function setSelf(self $self)
{
}
/**
* @param parent $realParent
*/
public function setRealParent(parent $realParent)
{
}
/**
* @return array
*/
public function getXTotals()
{
}
/**
* @return string
*/
public function getYT()
{
}
public function setDate(\DateTime $date)
{
}
public function addDate(\DateTime $date)
{
}
}