mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 05:41:20 +01:00
Merge pull request #7526 from ohader/event-naming
This commit is contained in:
commit
e3050b17d6
@ -209,3 +209,5 @@
|
||||
- `Psalm\PluginRegistrationSocket::getAdditionalFileExtensions` was removed
|
||||
- `Psalm\PluginRegistrationSocket::addFileExtension` was removed
|
||||
- :information_source: migration possible using `Psalm\PluginFileExtensionsSocket`
|
||||
- [BC] Method `\Psalm\Plugin\EventHandler\Event\AfterFunctionLikeAnalysisEvent::getClasslikeStorage()` was removed,
|
||||
use correct `\Psalm\Plugin\EventHandler\Event\AfterFunctionLikeAnalysisEvent::getFunctionlikeStorage()` instead
|
||||
|
@ -70,14 +70,6 @@ final class AfterFunctionLikeAnalysisEvent
|
||||
return $this->stmt;
|
||||
}
|
||||
|
||||
/**
|
||||
* @deprecated Will be removed in Psalm v5.0, use getFunctionlikeStorage() instead
|
||||
*/
|
||||
public function getClasslikeStorage(): FunctionLikeStorage
|
||||
{
|
||||
return $this->functionlike_storage;
|
||||
}
|
||||
|
||||
public function getFunctionlikeStorage(): FunctionLikeStorage
|
||||
{
|
||||
return $this->functionlike_storage;
|
||||
|
Loading…
x
Reference in New Issue
Block a user