mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-05 09:26:06 +00:00
added missing @var property types (reported by phpstan)
This commit is contained in:
@ -26,6 +26,7 @@ namespace pocketmine\level\generator\noise;
|
||||
use pocketmine\utils\Random;
|
||||
|
||||
class Perlin extends Noise{
|
||||
/** @var int[][] */
|
||||
public static $grad3 = [
|
||||
[1, 1, 0], [-1, 1, 0], [1, -1, 0], [-1, -1, 0],
|
||||
[1, 0, 1], [-1, 0, 1], [1, 0, -1], [-1, 0, -1],
|
||||
|
Reference in New Issue
Block a user