1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

24 lines
259 B
PHP
Raw Normal View History

<?php
namespace Vimeo\Test\DummyProject;
class Bar
{
use SomeTrait;
/** @var string */
public $x;
public function __construct()
{
2019-03-23 14:27:54 -04:00
$this->x = 'hello';
}
}
2019-02-08 18:08:53 -05:00
/**
* @return void
*/
function someFunction()
{
2019-03-23 14:27:54 -04:00
echo 'here';
}