🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-17 10:12:02 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
knplabs
/
packagist-api
/
src
/
Packagist
/
Api
/
Result
/
Package
📍 /opt/cpanel/ea-wappspector/vendor/knplabs/packagist-api/src/Packagist/Api/Result/Package
🔄 Refresh
✏️
Editing: Downloads.php
Read Only
<?php namespace Packagist\Api\Result\Package; use Packagist\Api\Result\AbstractResult; class Downloads extends AbstractResult { /** * @var integer */ protected $total; /** * @var integer */ protected $monthly; /** * @var integer */ protected $daily; /** * @param integer $total */ public function setTotal($total) { $this->total = $total; } /** * @param integer $monthly */ public function setMonthly($monthly) { $this->monthly = $monthly; } /** * @param integer $daily */ public function setDaily($daily) { $this->daily = $daily; } /** * @return integer */ public function getTotal() { return $this->total; } /** * @return integer */ public function getMonthly() { return $this->monthly; } /** * @return integer */ public function getDaily() { return $this->daily; } }
💾 Save Changes
❌ Cancel