mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-29 10:00:49 +08:00
modified: composer.lock modified: mu-plugin/v-sys-plugin-updater-mu.php modified: mu-plugin/v-sys-plugin-updater.php modified: mu-plugin/v-sys-theme-updater-mu.php modified: mu-plugin/v-sys-theme-updater.php modified: tests/ApiKeyHelperTest.php modified: update-api/app/Controllers/ApiController.php modified: update-api/app/Controllers/HomeController.php deleted: update-api/app/Controllers/KeyController.php modified: update-api/app/Core/Router.php modified: update-api/app/Models/HostsModel.php modified: update-api/config.php modified: update-api/public/install.php deleted: update-api/storage/test.sqlite
40 lines
731 B
PHP
40 lines
731 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
use PhpParser\Node;
|
|
|
|
interface FunctionLike extends Node {
|
|
/**
|
|
* Whether to return by reference
|
|
*/
|
|
public function returnsByRef(): bool;
|
|
|
|
/**
|
|
* List of parameters
|
|
*
|
|
* @return Param[]
|
|
*/
|
|
public function getParams(): array;
|
|
|
|
/**
|
|
* Get the declared return type or null
|
|
*
|
|
* @return null|Identifier|Name|ComplexType
|
|
*/
|
|
public function getReturnType();
|
|
|
|
/**
|
|
* The function body
|
|
*
|
|
* @return Stmt[]|null
|
|
*/
|
|
public function getStmts(): ?array;
|
|
|
|
/**
|
|
* Get PHP attribute groups.
|
|
*
|
|
* @return AttributeGroup[]
|
|
*/
|
|
public function getAttrGroups(): array;
|
|
}
|