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

15 lines
150 B
PHP
Raw Normal View History

<?php
namespace Foo;
class Bar
{
/** @var string */
public $x;
public function __construct()
{
$this->x = "hello";
}
}