예제 #1
0
파일: Feed.php 프로젝트: Tawreh/mtg
 /**
  * {@inheritdoc}
  */
 public function setConfigurationFor(FeedsPluginInterface $client, array $configuration)
 {
     $type = $client->pluginType();
     $this->get('config')->{$type} = array_intersect_key($configuration, $client->sourceDefaults()) + $client->sourceDefaults();
 }
예제 #2
0
파일: Feed.php 프로젝트: alnutile/drunatra
 /**
  * {@inheritdoc}
  */
 public function setConfigurationFor(FeedsPluginInterface $client, array $configuration)
 {
     $type = $client->pluginType();
     $this->get('config')->{$type} = $configuration;
     return $this;
 }