mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
db45ff1ba4
* add native return types * redundant phpdoc
28 lines
358 B
PHP
28 lines
358 B
PHP
<?php
|
|
namespace Foo;
|
|
|
|
const BAR = 'bat';
|
|
|
|
class SystemClass
|
|
{
|
|
const HELLO = 'hello';
|
|
|
|
/**
|
|
* @param int $a
|
|
* @param string $b
|
|
*
|
|
*/
|
|
public function foo($a, $b): string
|
|
{
|
|
}
|
|
|
|
/**
|
|
* @param int $a
|
|
* @param string $b
|
|
*
|
|
*/
|
|
public static function bar($a, $b): string
|
|
{
|
|
}
|
|
}
|