Lines Matching refs:height
13 private $height;
21 * @param int|float $height
23 public function __construct($width, $height)
26 $this->height = $height;
30 * Get the height.
32 * @return int The height.
36 return (int) $this->height;
53 * @return bool Whether the height and the width are the same as the instance.
57 return $this->height === $dimension->getHeight() && $this->width === $dimension->getWidth();