コード例 #1
0
ファイル: Skin.php プロジェクト: mcprohosting/skinner
 /**
  * Sets the current data to be the skin of the player.
  * @return self
  */
 public function skin()
 {
     if ($this->data) {
         $this->data = $this->data->reset();
         return $this;
     }
     $contents = $this->fetcher->download($this->username);
     $this->data = $this->provider->make($contents)->backup();
     return $this;
 }