Lines Matching defs:width
17 private $width;
20 * @param int|float $width
23 public function __construct($width, $height)
25 $this->width = $width;
40 * Get the width.
42 * @return int The width.
46 return (int) $this->width;
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();