예제 #1
0
 /**
  * @return boolean
  */
 public function isDownloading()
 {
     if (is_int($this->status)) {
         return $this->status == self::STATUS_DOWNLOAD || $this->status == self::STATUS_DOWNLOAD_WAIT;
     } else {
         return $this->status->isDownloading();
     }
 }
예제 #2
0
 /**
  * @return boolean
  */
 public function isDownloading()
 {
     return $this->status->isDownloading();
 }