* * 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 Martin Rademacher */ class InvalidDummy { /** * @var */ public $pub; /** * @return */ public static function getStat() { return 'stat'; } /** * Foo. * * @param */ public function setFoo($foo) { } /** * Bar. * * @return */ public function getBar() { return 'bar'; } }