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

23 lines
240 B
PHP
Raw Normal View History

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