attributes['used']; } final public function getStock(): int { return $this->attributes['stock']; } public function getFormat(): int { return intval($this->attributes['format'] ?? 0); } final public function getAvailable(): int { return $this->getStock() - $this->getUsed() - $this->getFormat(); } }