Composer Workspace global packages

This commit is contained in:
Clemens Schwaighofer
2023-08-02 14:52:33 +09:00
parent c383a7b7b7
commit 1fc144e178
239 changed files with 5659 additions and 2712 deletions
+18
View File
@@ -20,3 +20,21 @@ abstract class CallLike extends Expr {
*/
public function getArgs(): array {}
}
namespace PhpParser\Node;
use PhpParser\NodeAbstract;
class Name extends NodeAbstract {
/**
* @param string|string[]|self $name
* @param array $attributes
*/
public function __construct($name, array $attributes = []) {}
/**
* @return non-empty-string
*/
public function toString(): string {}
}