mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 09:56:06 +00:00
Visibility keyword before final or abstract keyword. (#814)
This commit is contained in:
@ -136,5 +136,5 @@ abstract class MetadataStore{
|
||||
*
|
||||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
public abstract function disambiguate(Metadatable $subject, $metadataKey);
|
||||
abstract public function disambiguate(Metadatable $subject, $metadataKey);
|
||||
}
|
@ -43,11 +43,11 @@ abstract class MetadataValue{
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public abstract function value();
|
||||
abstract public function value();
|
||||
|
||||
/**
|
||||
* Invalidates this metadata item, forcing it to recompute when next
|
||||
* accessed.
|
||||
*/
|
||||
public abstract function invalidate();
|
||||
abstract public function invalidate();
|
||||
}
|
Reference in New Issue
Block a user