1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-15 19:07:00 +01:00
psalm/tests/fixtures/DummyProjectWithErrors/src/FileWithErrors.php

24 lines
301 B
PHP
Raw Normal View History

<?php
namespace Acme\SampleProject;
2019-07-05 22:24:00 +02:00
function foo(string $s): int
{
return 'bar';
}
2020-02-17 22:33:28 +01:00
function bar(string $s) : string {
return $s;
}
function baz(string $s) : string {
return $s;
}
function bat(string $s) : string {
return $s;
}
function bang(string $s) : string {
return $s;
}