call() public method

public call ( $collection, $property )
Beispiel #1
0
 public function testClassCallsPluck()
 {
     $caller = new PluckCaller();
     $this->assertSame(['test' => 1, 'test2' => 2], $caller->call($this->keyedCollection, 'property'));
 }