1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-13 01:37:23 +01:00
psalm/tests/fixtures/DummyProject/Bat.php

14 lines
180 B
PHP
Raw Normal View History

<?php
namespace Vimeo\Test\DummyProject;
class Bat
{
public function __construct()
{
$a = new Bar();
someFunction();
someOtherFunction();
}
}