
| Current Path : /var/www/html1/bbp/web/modules/contrib/migrate_plus/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/bbp/web/modules/contrib/migrate_plus/src/AuthenticationPluginInterface.php |
<?php
namespace Drupal\migrate_plus;
/**
* Defines an interface for authenticaion handlers.
*
* @see \Drupal\migrate_plus\Annotation\Authentication
* @see \Drupal\migrate_plus\AuthenticationPluginBase
* @see \Drupal\migrate_plus\AuthenticationPluginManager
* @see plugin_api
*/
interface AuthenticationPluginInterface {
/**
* Performs authentication, returning any options to be added to the request.
*
* @return array
* Options (such as Authentication headers) to be added to the request.
*
* @link http://docs.guzzlephp.org/en/latest/request-options.html
*/
public function getAuthenticationOptions();
}