File tree Expand file tree Collapse file tree 2 files changed +1
-27
lines changed
src/Illuminate/Collections Expand file tree Collapse file tree 2 files changed +1
-27
lines changed Original file line number Diff line number Diff line change @@ -563,32 +563,6 @@ public function implode($value, $glue = null);
563
563
*/
564
564
public function intersect ($ items );
565
565
566
- /**
567
- * Intersect the collection with the given items, using the callback.
568
- *
569
- * @param \Illuminate\Contracts\Support\Arrayable<array-key, TValue>|iterable<array-key, TValue> $items
570
- * @param callable(TValue, TValue): int $callback
571
- * @return static
572
- */
573
- public function intersectUsing ($ items , callable $ callback );
574
-
575
- /**
576
- * Intersect the collection with the given items with additional index check.
577
- *
578
- * @param \Illuminate\Contracts\Support\Arrayable<TKey, TValue>|iterable<TKey, TValue> $items
579
- * @return static
580
- */
581
- public function intersectAssoc ($ items );
582
-
583
- /**
584
- * Intersect the collection with the given items with additional index check, using the callback.
585
- *
586
- * @param \Illuminate\Contracts\Support\Arrayable<array-key, TValue>|iterable<array-key, TValue> $items
587
- * @param callable(TValue, TValue): int $callback
588
- * @return static
589
- */
590
- public function intersectAssocUsing ($ items , callable $ callback );
591
-
592
566
/**
593
567
* Intersect the collection with the given items by key.
594
568
*
Original file line number Diff line number Diff line change @@ -639,7 +639,7 @@ public function intersect($items)
639
639
* @param callable(TValue, TValue): int $callback
640
640
* @return static
641
641
*/
642
- public function intersectUsing ($ items , callable $ callback )
642
+ public function intersectUsing ()
643
643
{
644
644
return $ this ->passthru ('intersectUsing ' , func_get_args ());
645
645
}
You can’t perform that action at this time.
0 commit comments