コード例 #1
0
ファイル: Object.php プロジェクト: Glifery/ConsoleApp
 /**
  * @return $this
  */
 public function clearPoints()
 {
     $this->points->clear();
     return $this;
 }
コード例 #2
0
ファイル: Cluster.php プロジェクト: php-ai/php-ml
 /**
  * @param SplObjectStorage $points
  */
 public function detachAll(SplObjectStorage $points)
 {
     $this->points->removeAll($points);
 }