You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php // fix
class A {
- public function takesString($s) : void {+ public function takesString(string $s) : void {
echo $s;
}
}
(new A)->takesString("hello");
<?php // fix class A { - public function takesString($s) : void { + public function takesString(string $s) : void { echo $s; } } (new A)->takesString("hello");Inpised by https://psalm.dev/articles/psalm-3-and-a-half