Ejemplo n.º 1
0
 /**
  * Build a new cluster photo instance.
  *
  * @param $subreddit
  * @return mixed
  */
 public static function named($subreddit)
 {
     $cluster = new Cluster();
     $cluster->name = $subreddit;
     $cluster->saveAs($subreddit);
     $cluster->save();
     return $cluster;
 }