1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

20 lines
223 B
PHP
Raw Normal View History

<?php
namespace Vimeo\Test\DummyProject;
class Bar
{
/** @var string */
public $x;
public function __construct()
{
$this->x = "hello";
}
}
function someFunction() : void
{
echo "here";
}