mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
17 lines
219 B
Plaintext
17 lines
219 B
Plaintext
|
<?php
|
||
|
class SomeClass
|
||
|
{
|
||
|
/**
|
||
|
* @return void
|
||
|
* @since 7.0
|
||
|
*/
|
||
|
public function something(string $param) {}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
* @since 8.0
|
||
|
*/
|
||
|
public function something() {}
|
||
|
}
|