1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00
psalm/tests/fixtures/stubs/systemclass.phpstub
2021-02-13 18:42:34 -05:00

28 lines
391 B
PHP

<?php
const ROOT_CONST_CONSTANT = 5;
define('ROOT_DEFINE_CONSTANT', 10);
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
{
}
}