getClients() public method

public getClients ( ) : yii\authclient\ClientInterface[]
return yii\authclient\ClientInterface[] list of auth clients.
コード例 #1
0
 public function testSetGet()
 {
     $collection = new Collection();
     $clients = ['testClient1' => new TestClient(), 'testClient2' => new TestClient()];
     $collection->setClients($clients);
     $this->assertEquals($clients, $collection->getClients(), 'Unable to setup clients!');
 }