1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/stubs/namespaced_class.php
2017-03-19 15:37:07 -04:00

22 lines
336 B
PHP

<?php
namespace Foo;
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) {}
}