1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/fixtures/DummyProject/Bar.php

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 19:27:54 +01:00
$this->x = 'hello';
}
}
2019-02-09 00:08:53 +01:00
/**
* @return void
*/
function someFunction()
{
2019-03-23 19:27:54 +01:00
echo 'here';
}