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
16 lines
502 B
PHP
16 lines
502 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
/**
|
|
* Represents a name that is written in source code with a leading dollar,
|
|
* but is not a proper variable. The leading dollar is not stored as part of the name.
|
|
*
|
|
* Examples: Names in property declarations are formatted as variables. Names in static property
|
|
* lookups are also formatted as variables.
|
|
*/
|
|
class VarLikeIdentifier extends Identifier {
|
|
public function getType(): string {
|
|
return 'VarLikeIdentifier';
|
|
}
|
|
}
|