1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00
psalm/tests/stubs/systemclass.php

20 lines
320 B
PHP

<?php
class SystemClass {
const HELLO = 'hello';
/**
* @param int $a
* @param string $b
* @return string
*/
public function foo($a, $b) {}
/**
* @param int $a
* @param string $b
* @return string
*/
public static function bar($a, $b) {}
}