예제 #1
0
파일: Intersect.php 프로젝트: jgswift/qinq
 /**
  * Compute intersection between collection and given arguments
  * @return array
  */
 public function execute()
 {
     $this->utilFunctionName = 'intersect';
     return parent::execute();
 }
예제 #2
0
파일: Difference.php 프로젝트: jgswift/qinq
 /**
  * Compute difference between collection and given array
  * @return array
  */
 public function execute()
 {
     $this->utilFunctionName = 'diff';
     return parent::execute();
 }