Install psalm as dev, sync scripts updates
This commit is contained in:
22
vendor/vimeo/psalm/stubs/phpparser.phpstub
vendored
Normal file
22
vendor/vimeo/psalm/stubs/phpparser.phpstub
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
namespace PhpParser\Node\Expr;
|
||||
|
||||
use PhpParser\Node\Arg;
|
||||
use PhpParser\Node\Expr;
|
||||
use PhpParser\Node\VariadicPlaceholder;
|
||||
|
||||
abstract class CallLike extends Expr {
|
||||
/**
|
||||
* @return list<Arg|VariadicPlaceholder>
|
||||
*/
|
||||
abstract public function getRawArgs(): array;
|
||||
|
||||
public function isFirstClassCallable(): bool {}
|
||||
|
||||
/**
|
||||
* @psalm-pure
|
||||
* @return list<Arg>
|
||||
*/
|
||||
public function getArgs(): array {}
|
||||
}
|
||||
Reference in New Issue
Block a user